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
b45f895d
Commit
b45f895d
authored
Jul 14, 2019
by
Chae Ho Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Working version(with inertial movement)
parent
4e42a919
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
229 additions
and
138 deletions
+229
-138
main.cpp
PoC/PoC/main.cpp
+26
-0
mainobserver.cpp
PoC/PoC/mainobserver.cpp
+203
-138
No files found.
PoC/PoC/main.cpp
View file @
b45f895d
#include <iostream>
#include <Windows.h>
#include "mainobserver.h"
int
main
(
void
)
{
auto
dummyobserver
=
Flatland
::
Mainworldobserver
();
auto
x
=
std
::
make_tuple
(
Flatland
::
INERTIAL
,
0.0
,
0.0
,
0.0
,
0.0
,
0
);
auto
player
=
Flatland
::
Player
(
x
);
Flatland
::
Flatlandobject
*
wow
=
&
player
;
dummyobserver
.
objectlist
.
push_back
(
std
::
make_tuple
(
wow
,
std
::
get
<
3
>
(
x
)));
auto
object1
=
Flatland
::
Object1
();
wow
=
&
object1
;
dummyobserver
.
objectlist
.
push_back
(
std
::
make_tuple
(
wow
,
std
::
get
<
3
>
(
object1
.
objecthistory
[
0
])));
while
(
true
)
{
int
x
;
std
::
cin
>>
x
;
//dummyobserver.updatebytick(1.0);
dummyobserver
.
currenttime
+=
1.0
;
player
.
changestate
(
dummyobserver
.
currenttime
);
wow
->
changestate
(
dummyobserver
.
currenttime
);
//dummyobserver.objectlist[1] =
player
.
updatepastlightcone
(
&
dummyobserver
);
std
::
cout
<<
player
.
pastlightcone
<<
std
::
endl
;
}
}
\ No newline at end of file
PoC/PoC/mainobserver.cpp
View file @
b45f895d
This diff is collapsed.
Click to expand it.
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