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
|
};
impl _set_path(string path, bool takeOver) {
if (takeOver) {
_t(string).dtor(&me -> path);
me -> path = path;
} else {
_t(string).dtor(&me -> path);
_t(string).copy(&me -> path, (void const*[]) {&path});
}
};
impl _get_base_script() -> ref Script {
return nullptr;
};
impl _has_static_method(string-name method) -> bool {
return false;
};
impl _is_tool() -> bool { return false; }; (* FIXME *)
};
class JanetScriptText extends JanetScript {
var as string: src;
new {
_t(string).empty(&me -> src, nullptr);
};
del {
_t(string).dtor(&me -> src);
};
impl _get_instance_base_type() -> string-name {
return _gdu_intern("ScriptExtension");
};
impl _has_source_code() -> bool { return true; };
impl _get_source_code() -> string {
auto d = gdu_string_dup(&me -> src);
return d;
};
impl _set_source_code(string s) {
_t(string).dtor(&me -> src);
_t(string).copy(&me -> src, (void const*[]) {&s});
};
};
class JanetScriptImage extends JanetScript {
impl _has_source_code() -> bool { return false; };
var struct gdjn_class_JanetScript_image {
size_t sz;
uint8_t* buf;
}: image;
impl _get_instance_base_type() -> string-name {
return _gdu_intern("ScriptExtension");
};
};
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
<
<
<
>
>
>
>
>
>
>
>
>
>
>
|
|
|
|
|
|
>
>
>
|
>
|
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
|
};
impl _set_path(string path, bool takeOver) {
if (takeOver) {
_t(string).dtor(&me -> path);
me -> path = path;
} else {
_t(string).dtor(&me -> path);
/* _t(string).copy(&me -> path, (void const*[]) {&path}); */
me -> path = gdu_string_dup(&path);
}
};
impl _get_base_script() -> ref Script {
return nullptr;
};
impl _has_static_method(string-name method) -> bool {
return false;
};
impl _is_tool() -> bool { return false; }; (* FIXME *)
impl _get_global_name(string-name id) -> string-name {
return gdu_sym_null();
};
impl _is_abstract() -> bool {
return false; (* TODO abuse for non-class scripts? *)
};
impl _get_instance_base_type() -> string-name {
return _gdu_intern("Object");
};
impl _is_valid() -> bool {
return true;
};
impl _get_documentation() -> array[dictionary] {
gd_array dox;
_t(array).empty(&dox, nullptr);
auto empty = gdu_sym_null();
_t(array).setTyped(&dox,
GDEXTENSION_VARIANT_TYPE_DICTIONARY, &empty, &empty);
_t(stringName).dtor(&empty);
return dox;
};
};
class JanetScriptText extends JanetScript {
var as string: src;
new {
_t(string).empty(&me -> src, nullptr);
};
del {
_t(string).dtor(&me -> src);
};
impl _has_source_code() -> bool { return true; };
impl _get_source_code() -> string {
auto d = gdu_string_dup(&me -> src);
return d;
};
impl _set_source_code(string s) {
_t(string).dtor(&me -> src);
_t(string).copy(&me -> src, (void const*[]) {&s});
};
impl _reload(bool keepState) -> int (* Error *) {
(* TODO *)
return gd_Error_ok;
};
};
import {
typedef struct gdjn_janet_image {
size_t sz;
uint8_t* buf;
} gdjn_janet_image;
};
class JanetScriptImage extends JanetScript {
impl _has_source_code() -> bool { return false; };
var gdjn_janet_image: image;
new {
me -> image = (gdjn_janet_image) {};
};
del {
if (me -> image.buf != nullptr) _free(me -> image.buf);
};
impl _reload(bool keepState) -> int (* Error *) {
(* TODO *)
return gd_Error_ok;
};
};
|