forked from acaudwell/Gource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgource.h
296 lines (205 loc) · 6.12 KB
/
gource.h
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/*
Copyright (C) 2009 Andrew Caudwell ([email protected])
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version
3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef GOURCE_H
#define GOURCE_H
#include <deque>
#include <list>
#include <fstream>
#include "core/display.h"
#include "core/shader.h"
#include "core/sdlapp.h"
#include "core/fxfont.h"
#include "core/bounds.h"
#include "core/seeklog.h"
#include "core/frustum.h"
#include "core/regex.h"
#include "core/ppm.h"
#include "core/mousecursor.h"
#include "gource_settings.h"
#include "logmill.h"
#include "core/vbo.h"
#include "bloom.h"
#include "slider.h"
#include "textbox.h"
#include "action.h"
#include "caption.h"
#include "file.h"
#include "user.h"
#include "dirnode.h"
#include "zoomcamera.h"
#include "key.h"
class Gource : public SDLApp {
std::string logfile;
FrameExporter* frameExporter;
RLogMill* logmill;
RCommitLog* commitlog;
PositionSlider slider;
ZoomCamera camera;
FileKey file_key;
bool debug, trace_debug;
bool manual_zoom;
bool manual_rotate;
bool manual_camera;
float rotation_remaining_angle;
MouseCursor cursor;
bool grab_mouse;
bool mousemoved;
bool mouseclicked;
bool mousedragged;
vec2 cursor_move;
bool recolour;
bool use_selection_bounds;
Bounds2D selection_bounds;
float rotate_angle;
vec2 mousepos;
float last_percent;
bool stop_position_reached;
int tag_seq, commit_seq;
GLint mouse_hits;
RFile* hoverFile;
RFile* selectedFile;
RUser* hoverUser;
RUser* selectedUser;
quadbuf file_vbo;
quadbuf user_vbo;
quadbuf edge_vbo;
quadbuf action_vbo;
bloombuf bloom_vbo;
GLuint selectionDepth;
RDirNode* root;
std::string displaydate;
int date_x_offset;
TextureResource* bloomtex;
TextureResource* beamtex;
TextureResource* logotex;
TextureResource* backgroundtex;
TextureResource* usertex;
Shader* shadow_shader;
Shader* text_shader;
Shader* bloom_shader;
float font_texel_size;
TextBox textbox;
FXFont font, fontlarge, fontmedium, fontcaption, fontdirname;
bool first_read;
bool paused;
bool reloaded;
bool take_screenshot;
float max_tick_rate;
int frameskip;
int framecount;
time_t currtime;
time_t lasttime;
float runtime;
float subseconds;
float splash;
float idle_time;
Uint32 screen_project_time;
Uint32 draw_edges_time;
Uint32 draw_shadows_time;
Uint32 draw_actions_time;
Uint32 draw_files_time;
Uint32 draw_users_time;
Uint32 draw_bloom_time;
Uint32 update_vbos_time;
Uint32 update_dir_tree_time;
Uint32 update_user_tree_time;
Uint32 draw_scene_time;
Uint32 logic_time;
Uint32 trace_time;
Uint32 text_time;
Uint32 text_update_time;
Uint32 text_vbo_commit_time;
Uint32 text_vbo_draw_time;
bool track_users;
Bounds2D dir_bounds;
Bounds2D user_bounds;
Bounds2D active_user_bounds;
int commitqueue_max_size;
float starting_z;
std::deque<RCommit> commitqueue;
std::map<std::string, RUser*> users;
std::map<std::string, RFile*> files;
std::map<int, RUser*> tagusermap;
std::list<RCaption*> captions;
std::list<RCaption*> active_captions;
QuadTree* dirNodeTree;
QuadTree* userTree;
std::string message;
float message_timer;
void setMessage(const char* str, ...);
void reset();
RUser* addUser(const std::string& username);
RFile* addFile(const RCommitFile& cf);
void deleteUser(RUser* user);
void deleteFile(RFile* file);
void selectBackground();
void selectUser(RUser* user);
void selectFile(RFile* file);
void selectNextUser();
void loadCaptions();
void readLog();
void logReadingError(const std::string& error);
void processCommit(const RCommit& commit, float t);
void addFileAction(const RCommit& commit, const RCommitFile& cf, RFile* file, float t);
std::string dateAtPosition(float percent);
void toggleCameraMode();
void updateCamera(float dt);
void updateUsers(float t, float dt);
void updateDirs(float dt);
void interactUsers();
void interactDirs();
void updateBounds();
void updateTime(time_t display_time);
void mousetrace(float dt);
bool canSeek();
void seekTo(float percent);
void zoom(bool zoomin);
void loadingScreen();
void drawBackground(float dt);
void drawScene(float dt);
void updateVBOs(float dt);
void updateAndDrawEdges();
void drawFileShadows(float dt);
void drawUserShadows(float dt);
void drawActions(float dt);
void drawFiles(float dt);
void drawUsers(float dt);
void drawBloom(float dt);
void screenshot();
void changeColours();
void grabMouse(bool grab_mouse);
public:
Gource(FrameExporter* frameExporter = 0);
~Gource();
static void writeCustomLog(const std::string& logfile, const std::string& output_file);
void setCameraMode(const std::string& mode);
void setCameraMode(bool track_users);
void setFrameExporter(FrameExporter* exporter, int video_framerate);
void showSplash();
bool isBusy();
void logic(float t, float dt);
void draw(float t, float dt);
void init();
void unload();
void reload();
void quit();
void update(float t, float dt);
void keyPress(SDL_KeyboardEvent *e);
void mouseMove(SDL_MouseMotionEvent *e);
void mouseClick(SDL_MouseButtonEvent *e);
#if SDL_VERSION_ATLEAST(2,0,0)
void mouseWheel(SDL_MouseWheelEvent *e);
#endif
};
#endif