-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathinkcpp.cpp
More file actions
420 lines (369 loc) · 12.6 KB
/
inkcpp.cpp
File metadata and controls
420 lines (369 loc) · 12.6 KB
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
#include "inkcpp.h"
#include "include/inkcpp.h"
#include "list.h"
#include "system.h"
#include "types.h"
#ifdef INK_ENABLE_CSTD
# include <string.h>
# include <stdio.h>
# include <stdlib.h>
#endif
#include <story.h>
#include <snapshot.h>
#include <globals.h>
#include <runner.h>
#include <choice.h>
using namespace ink::runtime;
InkValue inkvar_to_c(value& val)
{
InkValue value{};
switch (val.type) {
case value::Type::Bool:
value.bool_v = val.get<value::Type::Bool>();
value.type = InkValue::ValueTypeBool;
return value;
case value::Type::Uint32:
value.uint32_v = val.get<value::Type::Uint32>();
value.type = InkValue::ValueTypeUint32;
return value;
case value::Type::Int32:
value.int32_v = val.get<value::Type::Int32>();
value.type = InkValue::ValueTypeInt32;
return value;
case value::Type::String:
value.string_v = val.get<value::Type::String>();
value.type = InkValue::ValueTypeString;
return value;
case value::Type::Float:
value.float_v = val.get<value::Type::Float>();
value.type = InkValue::ValueTypeFloat;
return value;
case value::Type::List:
value.list_v = reinterpret_cast<HInkList*>(val.get<value::Type::List>());
value.type = InkValue::ValueTypeList;
return value;
}
inkFail("Undefined value type can not be translated");
return InkValue{};
}
value inkvar_from_c(InkValue& val)
{
switch (val.type) {
case InkValue::ValueTypeBool: return value(val.bool_v);
case InkValue::ValueTypeUint32: return value(val.uint32_v);
case InkValue::ValueTypeInt32: return value(val.int32_v);
case InkValue::ValueTypeString: return value(val.string_v);
case InkValue::ValueTypeFloat: return value(val.float_v);
case InkValue::ValueTypeList: return value(reinterpret_cast<list_interface*>(val.list_v));
case InkValue::ValueTypeNone: break;
}
inkFail("Undefined value type can not be translated");
return value{};
}
extern "C" {
#ifdef INK_ENABLE_CSTD
HInkStory* ink_story_from_file(const char* filename)
{
FILE* file = fopen(filename, "rb");
fseek(file, 0, SEEK_END);
long file_length = ftell(file);
if (file_length < 0) {
return NULL;
}
fseek(file, 0, SEEK_SET);
unsigned char* data = static_cast<unsigned char*>(malloc(file_length));
inkAssert(data, "Malloc of size %u failed", file_length);
size_t length = fread(data, sizeof(unsigned char), file_length, file);
inkAssert(
static_cast<size_t>(file_length) == length,
"Expected to read file of size %u, but only read %u", file_length, length
);
fclose(file);
return reinterpret_cast<HInkStory*>(story::from_binary(data, file_length));
}
HInkSnapshot* ink_snapshot_from_file(const char* filename)
{
FILE* file = fopen(filename, "rb");
fseek(file, 0, SEEK_END);
long file_length = ftell(file);
if (file_length < 0) {
return NULL;
}
fseek(file, 0, SEEK_SET);
unsigned char* data = static_cast<unsigned char*>(malloc(file_length));
inkAssert(data, "Malloc of size %u failed", file_length);
size_t length = fread(data, sizeof(unsigned char), file_length, file);
inkAssert(
static_cast<size_t>(file_length) == length,
"Expected to read file of size %u, but only read %u", file_length, length
);
fclose(file);
return reinterpret_cast<HInkSnapshot*>(snapshot::from_binary(data, file_length));
}
void ink_snapshot_write_to_file(const HInkSnapshot* self, const char* filename)
{
FILE* file = fopen(filename, "wb");
const snapshot& snap = *reinterpret_cast<const snapshot*>(self);
size_t length = fwrite(snap.get_data(), sizeof(unsigned char), snap.get_data_len(), file);
inkAssert(
length == snap.get_data_len(),
"Snapshot write failed, snapshot of size %u, but only %u bytes where written.",
snap.get_data_len(), length
);
fclose(file);
}
#endif
HInkStory* ink_story_from_binary(const unsigned char* data, size_t length, bool freeOnDestroy)
{
return reinterpret_cast<HInkStory*>(
story::from_binary(data, static_cast<ink::size_t>(length), freeOnDestroy)
);
}
HInkSnapshot*
ink_snapshot_from_binary(const unsigned char* data, size_t length, bool freeOnDestroy)
{
return reinterpret_cast<HInkSnapshot*>(
snapshot::from_binary(data, static_cast<ink::size_t>(length), freeOnDestroy)
);
}
void ink_snapshot_get_binary(
const HInkSnapshot* self, const unsigned char** data, size_t* data_length
)
{
const snapshot& snap = *reinterpret_cast<const snapshot*>(self);
*data = snap.get_data();
*data_length = snap.get_data_len();
}
int ink_snapshot_num_runners(const HInkSnapshot* self)
{
return reinterpret_cast<const snapshot*>(self)->num_runners();
}
const char* ink_choice_text(const HInkChoice* self)
{
return reinterpret_cast<const choice*>(self)->text();
}
int ink_choice_num_tags(const HInkChoice* self)
{
return reinterpret_cast<const choice*>(self)->num_tags();
}
const char* ink_choice_get_tag(const HInkChoice* self, int tag_id)
{
return reinterpret_cast<const choice*>(self)->get_tag(tag_id);
}
void ink_list_add(HInkList* self, const char* flag_name)
{
reinterpret_cast<list>(self)->add(flag_name);
}
void ink_list_remove(HInkList* self, const char* flag_name)
{
reinterpret_cast<list>(self)->remove(flag_name);
}
int ink_list_contains(const HInkList* self, const char* flag_name)
{
return reinterpret_cast<const list_interface*>(self)->contains(flag_name);
}
int ink_list_flags(const HInkList* self, InkListIter* iter)
{
list_interface::iterator itr = reinterpret_cast<const list_interface*>(self)->begin();
*iter = InkListIter{
&itr._list, itr._i, itr._one_list_iterator, itr._flag_name, itr._list_name,
};
return itr != reinterpret_cast<const list_interface*>(self)->end();
}
int ink_list_flags_from(const HInkList* self, const char* list_name, InkListIter* iter)
{
list_interface::iterator itr = reinterpret_cast<const list_interface*>(self)->begin(list_name);
*iter = InkListIter{
&itr._list, itr._i, itr._one_list_iterator, itr._flag_name, itr._list_name,
};
return itr != reinterpret_cast<const list_interface*>(self)->end();
}
int ink_list_iter_next(InkListIter* self)
{
list_interface::iterator itr(
self->flag_name, *reinterpret_cast<const list_interface*>(self->_data), self->_i,
self->_single_list
);
++itr;
self->flag_name = itr._flag_name;
self->list_name = itr._list_name;
self->_i = itr._i;
return itr != itr._list.end();
}
void ink_runner_delete(HInkRunner* self) { delete reinterpret_cast<const runner*>(self); }
HInkSnapshot* ink_runner_create_snapshot(const HInkRunner* self)
{
return reinterpret_cast<HInkSnapshot*>(
reinterpret_cast<const runner*>(self)->get()->create_snapshot()
);
}
int ink_runner_can_continue(const HInkRunner* self)
{
return reinterpret_cast<const runner*>(self)->get()->can_continue();
}
const char* ink_runner_get_line(HInkRunner* self)
{
return reinterpret_cast<runner*>(self)->get()->getline_alloc();
}
int ink_runner_num_tags(const HInkRunner* self)
{
return reinterpret_cast<const runner*>(self)->get()->num_tags();
}
const char* ink_runner_tag(const HInkRunner* self, int tag_id)
{
return reinterpret_cast<const runner*>(self)->get()->get_tag(tag_id);
}
int ink_runner_num_knot_tags(const HInkRunner* self)
{
return reinterpret_cast<const runner*>(self)->get()->num_knot_tags();
}
ink_hash_t ink_runner_current_knot(const HInkRunner* self)
{
return reinterpret_cast<const runner*>(self)->get()->get_current_knot();
}
bool ink_runner_move_to(HInkRunner* self, ink_hash_t path)
{
return reinterpret_cast<runner*>(self)->get()->move_to(path);
}
ink_hash_t ink_hash_string(const char* str) { return ink::hash_string(str); }
const char* ink_runner_knot_tag(const HInkRunner* self, int tag_id)
{
return reinterpret_cast<const runner*>(self)->get()->get_knot_tag(tag_id);
}
int ink_runner_num_global_tags(const HInkRunner* self)
{
return reinterpret_cast<const runner*>(self)->get()->num_global_tags();
}
const char* ink_runner_global_tag(const HInkRunner* self, int tag_id)
{
return reinterpret_cast<const runner*>(self)->get()->get_global_tag(tag_id);
}
int ink_runner_num_choices(const HInkRunner* self)
{
return reinterpret_cast<const runner*>(self)->get()->num_choices();
}
const HInkChoice* ink_runner_get_choice(const HInkRunner* self, int choice_id)
{
return reinterpret_cast<const HInkChoice*>(
reinterpret_cast<const runner*>(self)->get()->get_choice(choice_id)
);
}
void ink_runner_choose(HInkRunner* self, int choice_id)
{
return reinterpret_cast<runner*>(self)->get()->choose(choice_id);
}
void ink_runner_bind_void(
HInkRunner* self, const char* function_name, InkExternalFunctionVoid callback,
int lookaheadSafe
)
{
static_assert(sizeof(ink::runtime::value) >= sizeof(InkValue));
return reinterpret_cast<runner*>(self)->get()->bind(
function_name,
[callback](size_t len, const value* vals) {
InkValue* c_vals = reinterpret_cast<InkValue*>(const_cast<value*>(vals));
int c_len = static_cast<int>(len);
for (int i = 0; i < c_len; ++i) {
c_vals[i] = inkvar_to_c(const_cast<value&>(vals[i]));
}
callback(c_len, c_vals);
},
lookaheadSafe
);
}
void ink_runner_bind(
HInkRunner* self, const char* function_name, InkExternalFunction callback, int lookaheadSafe
)
{
static_assert(sizeof(ink::runtime::value) >= sizeof(InkValue));
return reinterpret_cast<runner*>(self)->get()->bind(
function_name,
[callback](size_t len, const value* vals) -> value {
InkValue* c_vals = reinterpret_cast<InkValue*>(const_cast<value*>(vals));
int c_len = static_cast<int>(len);
for (int i = 0; i < c_len; ++i) {
c_vals[i] = inkvar_to_c(const_cast<value&>(vals[i]));
}
InkValue res = callback(c_len, c_vals);
return inkvar_from_c(res);
},
lookaheadSafe
);
}
void ink_globals_delete(HInkGlobals* self) { delete reinterpret_cast<globals*>(self); }
HInkSnapshot* ink_globals_create_snapshot(const HInkGlobals* self)
{
return reinterpret_cast<HInkSnapshot*>(
reinterpret_cast<const globals*>(self)->get()->create_snapshot()
);
}
constexpr InkValue ink_value_none()
{
InkValue value{};
value.type = InkValue::Type::ValueTypeNone;
return value;
}
void ink_globals_observe(HInkGlobals* self, const char* variable_name, InkObserver observer)
{
reinterpret_cast<globals*>(self)->get()->observe(
variable_name,
[observer](value new_value, ink::optional<value> old_value) {
observer(
inkvar_to_c(new_value),
old_value.has_value() ? inkvar_to_c(old_value.value()) : ink_value_none()
);
}
);
}
InkValue ink_globals_get(const HInkGlobals* self, const char* variable_name)
{
ink::optional<value> o_val
= reinterpret_cast<const globals*>(self)->get()->get<value>(variable_name);
if (! o_val.has_value()) {
return ink_value_none();
} else {
return inkvar_to_c(o_val.value());
}
}
int ink_globals_set(HInkGlobals* self, const char* variable_name, InkValue val)
{
return reinterpret_cast<globals*>(self)->get()->set(variable_name, inkvar_from_c(val));
}
void ink_story_delete(HInkStory* self) { delete reinterpret_cast<story*>(self); }
HInkRunner* ink_story_new_runner(HInkStory* self, HInkGlobals* global_store)
{
runner* res = new runner(
global_store
? reinterpret_cast<story*>(self)->new_runner(*reinterpret_cast<globals*>(global_store))
: reinterpret_cast<story*>(self)->new_runner()
);
return reinterpret_cast<HInkRunner*>(res);
}
HInkRunner* ink_story_new_runner_from_snapshot(
HInkStory* self, const HInkSnapshot* snapshot, HInkGlobals* global_store, int runner_id
)
{
const ink::runtime::snapshot& snap = *reinterpret_cast<const ink::runtime::snapshot*>(snapshot);
runner* res = new runner(
global_store
? reinterpret_cast<story*>(self)->new_runner_from_snapshot(
snap, *reinterpret_cast<globals*>(global_store), runner_id
)
: reinterpret_cast<story*>(self)->new_runner_from_snapshot(snap, nullptr, runner_id)
);
return reinterpret_cast<HInkRunner*>(res);
}
HInkGlobals* ink_story_new_globals(HInkStory* self)
{
return reinterpret_cast<HInkGlobals*>(new globals(reinterpret_cast<story*>(self)->new_globals())
);
}
HInkGlobals* ink_story_new_globals_from_snapshot(HInkStory* self, const HInkSnapshot* snap)
{
return reinterpret_cast<HInkGlobals*>(
new globals(reinterpret_cast<story*>(self)->new_globals_from_snapshot(
*reinterpret_cast<const snapshot*>(snap)
))
);
}
}