1 | // |
---|
2 | // Orbital |
---|
3 | // |
---|
4 | // Copyright: (c) 2012 Various People |
---|
5 | // |
---|
6 | |
---|
7 | #if defined HAVE_CONFIG_H |
---|
8 | # include "config.h" |
---|
9 | #endif |
---|
10 | |
---|
11 | #if defined _WIN32 |
---|
12 | # include <direct.h> |
---|
13 | #endif |
---|
14 | |
---|
15 | #if USE_SDL && defined __APPLE__ |
---|
16 | # include <SDL_main.h> |
---|
17 | #endif |
---|
18 | |
---|
19 | #include "core.h" |
---|
20 | #include "loldebug.h" |
---|
21 | |
---|
22 | using namespace std; |
---|
23 | using namespace lol; |
---|
24 | |
---|
25 | #include "orbital.h" |
---|
26 | #include "mesh.h" |
---|
27 | #include "particlesystem.h" |
---|
28 | #include "camera.h" |
---|
29 | |
---|
30 | Orbital::Orbital() |
---|
31 | { |
---|
32 | for (int j = 0; j < 20; j++) |
---|
33 | { |
---|
34 | for (int i = 0; i < 20; i++) |
---|
35 | { |
---|
36 | m.SendCommand(((i + j) % 2) ? "sc.3,.7,.9,1,scb.3,.7,.9,1" |
---|
37 | : "sc.3,.3,.7,1,scb.3,.3,.7,1"); |
---|
38 | m.SendCommand("ac4,2,44,40,0,0,ty-1,ad4,40,0,ry45"); |
---|
39 | m.Scale(vec3(std::sqrt(0.5f))); |
---|
40 | m.Translate(vec3(i * 44 - 440, -50, j * 44 - 440)); |
---|
41 | m.Flush(); |
---|
42 | } |
---|
43 | } |
---|
44 | |
---|
45 | /* Yellow sphere */ |
---|
46 | m.SendCommand("sc1,1,0,1,asph10,30,20,24"); |
---|
47 | m.SendCommand("t0,0,-60,fl"); |
---|
48 | |
---|
49 | /* Pink box */ |
---|
50 | m.SendCommand("sc1,0,1,1,afcb10,10,10,1,rx45,rz45"); |
---|
51 | m.SendCommand("t-20,-20,0,fl"); |
---|
52 | |
---|
53 | /* Large meteor */ |
---|
54 | m.SendCommand("sc0,0,0.3,1,afcb30,30,30,5,ry45,rx45,afcb30,30,30,5"); |
---|
55 | m.SendCommand("t40,40,0,fl"); |
---|
56 | |
---|
57 | /* Grey/red bonus */ |
---|
58 | m.SendCommand("sc0.6,0.7,0.8,1,afcb7,4,7,0.6,sc1,0,0.3,1,afcb4,7,4,0.6"); |
---|
59 | m.SendCommand("t-40,20,-30,fl"); |
---|
60 | |
---|
61 | /* Orange/white alien */ |
---|
62 | m.SendCommand("sc1,0.7,0,1,afcb12,3,10,0.4,tz3,sc1,1,1,1,afcb2,10,10,0.4"); |
---|
63 | m.SendCommand("rx20,ry30,t0,40,-20,fl"); |
---|
64 | |
---|
65 | /* Tank body + tank head */ |
---|
66 | m.SendCommand("sc0.1,0.1,0,1,ab6,6,15,ty-2,sc1,1,1,1,afcb4,5,16,0.4,tx4,tx60,mx,tx120,fl,sc0.2,0.7,0,1,afcb8,7,10,0.4,tz-4,tx60,fl"); |
---|
67 | m.SendCommand("sc0.2,0.7,0,1,afcb3,6,10,0.4,tx-8,afcb3,6,10,0.4,tx4,ty10,tx60,fl,sc1,1,1,1,afcb3,6,10,0.4,rx-30,ty10,tx60,fl"); |
---|
68 | |
---|
69 | /* Orange player ship */ |
---|
70 | m.SendCommand("sc1,.5,0,1"); |
---|
71 | m.SendCommand("afcb5,1,3,0.6,fl,sc1,1,1,1,afcb1,5,3,0.6,tz-1,irb"); |
---|
72 | m.SendCommand("sc1,.5,0,1"); |
---|
73 | m.SendCommand("afcb3,6,7,.4,t0,0,7,sc1,1,1,1,afcb3,4,4,.4,t4,0,-4,mx,fl"); |
---|
74 | m.SendCommand("sc1,.5,0,1"); |
---|
75 | m.SendCommand("afcb3,6,5,.4,sc1,1,1,1,afcb2,3,9,.4,fl"); |
---|
76 | m.SendCommand("scb1,1,1,1,ac4,15,.2,.6,1,1,tz-2,ac4,15,.2,.6,1,1,rx90,t0,-2,-7,fl"); |
---|
77 | |
---|
78 | /* Orange fire */ |
---|
79 | m.SendCommand("sc1,1,0,1,scb1,0,0,0,at4,1,s1.5,1,4,tz-13,ad6,5.8,1"); |
---|
80 | m.SendCommand("t-40,-40,0,fl"); |
---|
81 | |
---|
82 | /* Lasers */ |
---|
83 | m.SendCommand("sc1,1,1,1,scb0,0,0,1,aq8,1,sx0.25,tx-3,sc1,0,0,1,scb0,0,0,1,aq8,1,tx4,sz50,sx0.3,tz-200,mx,as10,12,8,1,1,ty60,fl"); |
---|
84 | |
---|
85 | /* Thrusters */ |
---|
86 | m.SendCommand("sc0,1,1,scb0,0,0,1,ac5,15,0,1.5,0,1,ac7,35,1.1,4,0,1,rx90,t-3,0,27,mx"); |
---|
87 | m.SendCommand("fl"); |
---|
88 | |
---|
89 | m_particlesystem = new ParticleSystem(); |
---|
90 | m_camera = new Camera(vec3(0, 200, 300), |
---|
91 | vec3(0, 0, 0), |
---|
92 | vec3(0, 1, 0)); |
---|
93 | |
---|
94 | m_angle = 0; |
---|
95 | |
---|
96 | m_ready = false; |
---|
97 | |
---|
98 | Ticker::Ref(m_particlesystem); |
---|
99 | Ticker::Ref(m_camera); |
---|
100 | } |
---|
101 | |
---|
102 | void Orbital::TickGame(float deltams) |
---|
103 | { |
---|
104 | WorldEntity::TickGame(deltams); |
---|
105 | |
---|
106 | m_angle += deltams / 50.0f; |
---|
107 | |
---|
108 | mat4 anim = mat4::rotate(m_angle, vec3(0, 1, 0)); |
---|
109 | mat4 model = mat4::translate(vec3(0)); |
---|
110 | |
---|
111 | m_modelview = m_camera->GetViewMatrix() * model * anim; |
---|
112 | m_proj = m_camera->GetProjMatrix(); |
---|
113 | m_normalmat = transpose(inverse(mat3(m_modelview))); |
---|
114 | } |
---|
115 | |
---|
116 | void Orbital::TickDraw(float deltams) |
---|
117 | { |
---|
118 | WorldEntity::TickDraw(deltams); |
---|
119 | |
---|
120 | if (!m_ready) |
---|
121 | { |
---|
122 | m.SendCommand("irb"); |
---|
123 | |
---|
124 | /* FIXME: this object never cleans up */ |
---|
125 | m_ready = true; |
---|
126 | } |
---|
127 | |
---|
128 | Video::SetClearColor(vec4(0.0f, 0.0f, 0.0f, 1.0f)); |
---|
129 | |
---|
130 | m.Render(m_modelview, m_proj, m_normalmat); |
---|
131 | } |
---|
132 | |
---|
133 | Orbital::~Orbital() |
---|
134 | { |
---|
135 | Ticker::Unref(m_particlesystem); |
---|
136 | Ticker::Unref(m_camera); |
---|
137 | } |
---|
138 | |
---|
139 | int main(int argc, char **argv) |
---|
140 | { |
---|
141 | Application app("Orbital", ivec2(800, 600), 60.0f); |
---|
142 | |
---|
143 | #if defined _MSC_VER && !defined _XBOX |
---|
144 | _chdir(".."); |
---|
145 | #elif defined _WIN32 && !defined _XBOX |
---|
146 | _chdir("../.."); |
---|
147 | #endif |
---|
148 | |
---|
149 | new DebugFps(5, 5); |
---|
150 | new Orbital(); |
---|
151 | app.ShowPointer(false); |
---|
152 | |
---|
153 | app.Run(); |
---|
154 | |
---|
155 | return EXIT_SUCCESS; |
---|
156 | } |
---|
157 | |
---|