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
|
#include "honey.h"
struct options {
bool verbose;
bool run;
bool has_update;
bool has_draw;
char* scriptdir;
};
bool has_function(lua_State* L, char* field)
{
lua_getglobal(L, "honey");
lua_getfield(L, -1, field);
if (lua_isfunction(L, -1))
return true;
return false;
}
bool parse_options(struct options* opt, int argc, char** argv)
{
opt->verbose = false;
opt->run = false;
opterr = 0;
int c;
while ((c = getopt(argc, argv, "vh")) != -1) {
switch (c) {
case 'v':
opt->verbose = true;
break;
case 'h':
// print help
break;
case '?':
if (isprint (optopt))
fprintf (stderr, "Unknown option `-%c'.\n", optopt);
else
fprintf (stderr,
"Unknown option character `\\x%x'.\n",
optopt);
return false;
default:
return false;
}
}
if (optind < argc) {
opt->run = true;
opt->scriptdir = argv[optind];
}
return true;
}
GLFWwindow* setup_window(int width, int height, char* title)
{
glfwInit();
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
GLFWwindow* window = glfwCreateWindow(width, height, title, NULL, NULL);
if (window == NULL) {
fprintf(stderr, "ERROR: failed to create window!\n");
glfwTerminate();
return NULL;
}
glfwMakeContextCurrent(window);
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
if (!gladLoadGLLoader((GLADloadproc) glfwGetProcAddress)) {
fprintf(stderr, "ERROR: failed to initialize GLAD!\n");
glfwTerminate();
return NULL;
}
honey_setup_keyboard();
glfwSetKeyCallback(window, default_honey_keyboard_callback);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
return window;
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
int main(int argc, char** argv)
{
struct options opt;
if (!parse_options(&opt, argc, argv)) {
fprintf(stderr, "ERROR: failed to parse command line options!\n");
return 1;
}
if (!opt.run)
return 0;
printf("%d\n", LUA_NOREF);
GLFWwindow* window = setup_window(480, 320, "honey-engine");
lua_State* L = luaL_newstate();
glfwSetWindowUserPointer(window, L);
luaL_openlibs(L);
lua_createtable(L, 0, 1);
honey_setup_input(L);
lua_setfield(L, -2, "input");
lua_setglobal(L, "honey");
size_t dirlen = strlen(opt.scriptdir) + 10;
char* scriptfile = malloc(sizeof(char) * dirlen);
if (scriptfile == NULL) {
fprintf(stderr, "ERROR: failed to allocate memory for script file string!\n");
return 1;
}
snprintf(scriptfile, dirlen, "%s/main.lua", opt.scriptdir);
if (luaL_loadfile(L, scriptfile) == 0) {
if (lua_pcall(L, 0, 1, 0) == 0) {
lua_pop(L, lua_gettop(L));
}
}
else {
fprintf(stderr, "ERROR: failed to open %s!\n", scriptfile);
return 1;
}
opt.has_update = has_function(L, "update");
opt.has_draw = has_function(L, "draw");
float prevTime = 0;
float currentTime = 0;
float dt;
while (!glfwWindowShouldClose(window)) {
currentTime = (float) glfwGetTime();
dt = currentTime - prevTime;
prevTime = currentTime;
glfwPollEvents();
lua_getglobal(L, "honey");
if (opt.has_update) {
lua_getfield(L, -1, "update");
if (lua_isfunction(L, -1)) {
lua_pushnumber(L, dt);
int result = lua_pcall(L, 1, 0, 0);
if (result != 0) {
glfwSetWindowShouldClose(window, true);
}
}
else {
lua_pop(L, 1);
}
}
if (opt.has_draw) {
lua_getfield(L, -1, "draw");
if (lua_isfunction(L, -1)) {
int result = lua_pcall(L, 0, 0, 0);
if (result != 0) {
glfwSetWindowShouldClose(window, true);
}
}
else {
lua_pop(L, 1);
}
}
lua_pop(L, 1);
}
lua_close(L);
glfwTerminate();
return 0;
}
|