summaryrefslogtreecommitdiff
path: root/include/state.h
blob: a0b17fa30fd27a45c47bed9f163c6c5ffac70af7 (plain)
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
#pragma once

#define ALLOC_PAGE_SIZE 256

typedef struct {
	ModelAnimation *animations;
	unsigned int animCount;
} ModelAnimations;

typedef struct {
	char *exePath;
	bool hasWindow;
	bool run;
	lua_State *luaState;
	Vector2 resolution;
	size_t guiFont;
	int logLevelInvalid;
	/* Resources. */
		/* Fonts. */
	Font **fonts;
	size_t fontCount;
	size_t fontAlloc;
		/* Sounds. */
	Wave **waves;
	size_t waveCount;
	size_t waveAlloc;
		/* Sounds. */
	Sound **sounds;
	size_t soundCount;
	size_t soundAlloc;
		/* Music. */
	Music **musics;
	size_t musicCount;
	size_t musicAlloc;
		/* Meshes. */
	Mesh **meshes;
	size_t meshCount;
	size_t meshAlloc;
		/* Materials. */
	Material **materials;
	size_t materialCount;
	size_t materialAlloc;
		/* Models. */
	Model **models;
	size_t modelCount;
	size_t modelAlloc;
		/* ModelAnimations. */
	ModelAnimations **animations;
	size_t animationCount;
	size_t animationAlloc;
		/* Lights. */
	Light **lights;
	size_t lightCount;
	size_t lightAlloc;
	/* Raylib GLFW input callback events. */
		/* Window events. */
	GLFWwindowsizefun raylibWindowSizeCallback;
	GLFWwindowmaximizefun raylibWindowMaximizeCallback;
	GLFWwindowiconifyfun raylibWindowIconifyCallback;
	GLFWwindowfocusfun raylibWindowFocusCallback;
	GLFWdropfun raylibWindowDropCallback;
		/* Input events. */
	GLFWkeyfun raylibKeyCallback;
	GLFWcharfun raylibCharCallback;
	GLFWmousebuttonfun raylibMouseButtonCallback;
	GLFWcursorposfun raylibMouseCursorPosCallback;
	GLFWscrollfun raylibMouseScrollCallback;
	GLFWcursorenterfun raylibCursorEnterCallback;
} State;

extern State *state;

bool stateInit( int argn, const char **argc, const char *exePath );
void stateInitInterpret( int argn, const char **argc );
void stateFree();