-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.h
81 lines (65 loc) · 1.82 KB
/
main.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
#pragma once
#ifndef MAIN_H
#define MAIN_H
#include "./includes/objects/game_object.h"
#include "./includes/engine_globals.h"
#include "./game_data/objects/bird.h"
#include "./game_data/objects/test_platform.h"
#include <ctime>
#include <unistd.h>
#include <iostream>
#include <chrono>
#include <thread>
#include <cmath>
#include <SDL2/SDL.h>
#include <vector>
#include "interface_globals.h"
#include <string>
#include <qadon.h>
#include <filesystem>
//#include "./includes/objects/rdoh.h"
//#include "./includes/objects/rdoh_util.h"
namespace fs = std::filesystem;
/* Initialize Interface Globals
*
*/
// Engine Interface Variables
bool play_pause = false;
// Scene Editor Variables
ImVec4 scene_color = ImVec4(0.45f, 0.55f, 0.60f, 1.00f);
// Object Editor Variables
bool add_object_menu_active = false;
char object_name[128] = "";
std::vector <std::string> asset_list = {};
int sprite_name_index =0;
int last_selected_sprite_index = 0;
int selected_asset_index = 0;
int draw_layer_index = 0;
std::string selected_sprite[5] {"None","None","None","None","None"};
qadon object_data;
bool object_save_button_active = false;
/* Engine Globals
*
*/
std::map<std::string,std::any> objects_library;
// Frame Rate Variables
float dt = 0;
float frames_per_second_f = 120.0;
const float micro_seconds_f = pow(10,6); // == 1 / micro_seconds
const float frame_duration_f = (1.0 / frames_per_second_f)*micro_seconds_f;
float time_elapsed_f = 0.0;
// Engines Variables
GraphicsEngine graphics_engine(1440,900,32);
InputEngine input_engine;
SpriteEngine sprite_engine;
PhysicsEngine physics_engine;
CollisionEngine collision_engine;
EngineInterface engine_interface;
ScrollEngine scroll_engine;
CameraEngine camera_engine;
// Object variables
RDOH object_handler;
RdohUtil object_util;
std::filesystem::path exe_path;
std::filesystem::path exe_dir;
#endif