Commit b45f895d authored by Chae Ho Shin's avatar Chae Ho Shin

Working version(with inertial movement)

parent 4e42a919
#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
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment