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
f1107a10
Commit
f1107a10
authored
Jul 08, 2019
by
Chae Ho Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
model update
parent
d08511a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
36 deletions
+14
-36
mainobserver.cpp
PoC/PoC/mainobserver.cpp
+14
-36
No files found.
PoC/PoC/mainobserver.cpp
View file @
f1107a10
...
...
@@ -69,51 +69,29 @@ namespace flatland {
{
public:
bool
isPlayer
=
true
;
//std::vector<std::tuple<Flatlandobject, int
>> world = {};
std
::
vector
<
std
::
tuple
<
Flatlandobject
,
double
>>
world
=
{};
char
pastlightcone
[
81
]
=
"--------------------------------------------------------------------------------"
;
auto
updatepastlightcone
(
Mainworldobserver
*
main
)
->
void
auto
updatepastlightcone
(
Mainworldobserver
*
main
observer
)
->
void
{
for
(
auto
i
=
0
;
i
<
80
;
++
i
)
for
(
auto
object
:
world
)
{
auto
distance
=
i
-
40
;
auto
theobject
=
std
::
get
<
0
>
(
object
)
;
if
(
distance
==
0
)
continue
;
auto
point
=
std
::
vector
<
double
>
{(
double
)
distance
,
(
double
)
distance
};
point
=
LORENTZ_BOOST
(
-
this
->
currentvelocity
)
*
point
;
point
=
std
::
vector
<
double
>
{
point
[
0
]
+
main
->
currenttime
,
point
[
1
]
+
std
::
get
<
1
>
(
main
->
objectlist
[
0
])};
for
(
auto
anobject
:
main
->
objectlist
)
for
(
auto
objectstate
:
theobject
.
objecthistory
)
{
auto
theobject
=
std
::
get
<
0
>
(
anobject
);
auto
findcond
=
[](
auto
t
,
std
::
tuple
<
State
,
double
,
double
,
int
,
double
,
int
>
a
)
{
return
std
::
get
<
1
>
(
a
)
>
t
;
};
auto
newfindcond
=
std
::
bind
(
findcond
,
point
[
0
],
std
::
placeholders
::
_1
);
auto
it
=
std
::
find_if
(
theobject
.
objecthistory
.
begin
(),
theobject
.
objecthistory
.
end
(),
newfindcond
);
if
(
it
==
theobject
.
objecthistory
.
begin
())
{
auto
mainclocktimeatstatechange
=
std
::
get
<
1
>
(
objectstate
);
auto
propertimeclockatstatechange
=
std
::
get
<
2
>
(
objectstate
);
auto
maincoordinatelocationatstatechange
=
std
::
get
<
3
>
(
objectstate
);
auto
mainrelativevelocity
=
std
::
get
<
4
>
(
objectstate
);
auto
properacceleration
=
std
::
get
<
5
>
(
objectstate
);
if
(
std
::
get
<
0
>
(
objectstate
)
==
INERTIAL
)
{
auto
lightconeeq
=
std
::
vector
<
double
>
{
1.0
,
mainobserver
->
currenttime
-
std
::
get
<
1
>
(
mainobserver
->
objectlist
[
0
])
};
}
else
else
{
auto
recentstatechange
=
*
std
::
prev
(
it
);
auto
mainclocktimeatstatechange
=
std
::
get
<
1
>
(
recentstatechange
);
auto
propertimeclockatstatechange
=
std
::
get
<
2
>
(
recentstatechange
);
auto
maincoordinatelocationatstatechange
=
std
::
get
<
3
>
(
recentstatechange
);
auto
mainrelativevelocity
=
std
::
get
<
4
>
(
recentstatechange
);
auto
properacceleration
=
std
::
get
<
5
>
(
recentstatechange
);
if
((
maincoordinatelocationatstatechange
<
point
[
1
]
&&
mainrelativevelocity
<
0.0
&&
properacceleration
<
0.0
)
||
(
maincoordinatelocationatstatechange
>
point
[
1
]
&&
mainrelativevelocity
>
0.0
&&
properacceleration
>
0.0
))
{
continue
;
}
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