-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
81 lines (60 loc) · 1.98 KB
/
main.cpp
File metadata and controls
81 lines (60 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// defines list - you can change these for global effect
//#define SIMPLE_TRACK
////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <cstdio>
#include <sstream>
#include <string>
#include <fstream>
#include <cstring>
#include <ode/ode.h>
//#include <drawstuff/drawstuff.h>
// start my includes
#define WE_ARE_IN_MAIN
#include "keymap.h"
#include "tags.h"
#include "error.h"
#include "common.h"
#include "cconfig.h"
#include "myobj.h"
#include "mydraw.h"
#include "car.h"
#include "automate.h"
// designs for links
#include "linkboxdesign.h"
#include "mboxlinkdesign.h"
// designs for wheels
#include "plainwheeldesign.h"
#include "twheeldesign.h"
#include "Simulation.h"
using namespace std;
// globals
//
/////////////////////////////////////////////////////////////////////
// //
// Other Variables //
// //
/////////////////////////////////////////////////////////////////////
// Process Keyboard Input
#include "main_command.cpp"
//////////////////////////////////////////////////////////////////////////////////
// //
// Main //
// //
//////////////////////////////////////////////////////////////////////////////////
int main(int argc, char **argv)
{
dInitODE();
Simulation* sim = Simulation::instance(); // make sure simulation is constructed (Simulation is a singleton)
// check command line arguments
if (argc >= 4 && strcmp("-auto", argv[1]) == 0) {
/*
if (strcmp("fallfwdexit", argv[2])) {
dReal end = atoi(argv[3]);
automat = new AutoFallFwdexit(world, space, end);
}
*/
}
sim->run(argc, argv);
return 0;
}