Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
s1t1proofofconcept
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Flatland
s1t1proofofconcept
Commits
a3b2cc2a
Commit
a3b2cc2a
authored
Jul 07, 2019
by
Chae Ho Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do you know SR?
parent
185b3e23
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
9 deletions
+17
-9
.suo
PoC/.vs/PoC/v15/.suo
+0
-0
Browse.VC.db
PoC/.vs/PoC/v15/Browse.VC.db
+0
-0
mainobserver.cpp
PoC/PoC/mainobserver.cpp
+17
-9
No files found.
PoC/.vs/PoC/v15/.suo
View file @
a3b2cc2a
No preview for this file type
PoC/.vs/PoC/v15/Browse.VC.db
View file @
a3b2cc2a
No preview for this file type
PoC/PoC/mainobserver.cpp
View file @
a3b2cc2a
...
...
@@ -14,19 +14,21 @@ namespace flatland {
class
Flatlandobject
{
Flatlandobject
(
std
::
vector
<
int
>
theparts
,
std
::
tuple
<
State
,
double
,
int
>
initialstate
,
Mainworldobserver
*
thegame
)
Flatlandobject
(
std
::
vector
<
int
>
theparts
,
std
::
tuple
<
State
,
double
,
double
,
int
,
int
,
int
>
initialstate
,
Mainworldobserver
*
thegame
)
{
parts
=
theparts
;
objecthistory
.
push_back
(
initialstate
);
thegame
->
objectlist
.
push_back
(
std
::
make_tuple
(
*
this
,
std
::
get
<
2
>
(
initialstate
)));
thegame
->
objectlist
.
push_back
(
std
::
make_tuple
(
*
this
,
std
::
get
<
3
>
(
initialstate
)));
}
public:
std
::
vector
<
int
>
parts
=
{};
std
::
vector
<
std
::
tuple
<
State
,
double
,
int
>>
objecthistory
=
{};
std
::
vector
<
std
::
tuple
<
State
,
double
,
double
,
int
,
int
,
int
>>
objecthistory
=
{};
// state, time(in main observer clock) at statechange, proper time clock at state change, location(in main observer coordinates) at state change,
// velocity(if inertial) relative to mainobserver, proper acceleration(if accelerating)
double
propertime
;
int
velocity
;
int
properacceleration
;
int
current
velocity
;
int
current
properacceleration
;
auto
getcenterofmass
()
->
int
...
...
@@ -41,6 +43,11 @@ namespace flatland {
};
class
Player
:
public
Flatlandobject
{
};
class
Mainworldobserver
{
public:
...
...
@@ -59,11 +66,12 @@ namespace flatland {
this
->
currenttime
+=
tick
;
for
(
std
::
tuple
<
Flatlandobject
,
int
>
a
:
this
->
objectlist
)
{
std
::
get
<
0
>
(
a
).
changestate
(
this
->
currenttime
);
if
(
std
::
get
<
0
>
(
std
::
get
<
0
>
(
a
).
objecthistory
.
back
())
==
INERTIAL
)
auto
theobject
=
std
::
get
<
0
>
(
a
);
theobject
.
changestate
(
this
->
currenttime
);
auto
objectstate
=
theobject
.
objecthistory
.
back
();
if
(
std
::
get
<
0
>
(
objectstate
)
==
INERTIAL
)
{
auto
newx
=
std
::
get
<
3
>
(
objectstate
)
+
;
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment