Neocore
Loading...
Searching...
No Matches
neocore.h
Go to the documentation of this file.
1/*
2 David Vandensteen
3*/
4
5 //--------------------------------------------------------------------------//
6 // DEFINE //
7//--------------------------------------------------------------------------//
8
9#ifndef NEOCORE_H
10#define NEOCORE_H
11
12#include <DATlib.h>
13#include <math.h>
14
15#define SHRUNK_TABLE_PROP_SIZE 0x2fe
16
17#define MANUALBOX 0
18#define AUTOBOX 1
19
22
23 //--------------------------------------------------------------------------//
24 // STRUCTURE //
25//--------------------------------------------------------------------------//
26
27typedef struct Vec2int { int x; int y; } Vec2int;
28typedef struct Vec2short { short x; short y; } Vec2short;
29typedef struct Vec2byte { BYTE x; BYTE y; } Vec2byte;
30
31typedef struct Box {
37 short width;
38 short height;
42
43typedef struct GFX_Animated_Sprite {
44 aSprite aSpriteDAT;
45 spriteInfo *spriteInfoDAT;
46 paletteInfo *paletteInfoDAT;
48
49typedef struct GFX_Picture {
50 picture pictureDAT;
51 pictureInfo *pictureInfoDAT;
52 paletteInfo *paletteInfoDAT;
56
62
63typedef struct GFX_Picture_Physic {
69
70typedef struct GFX_Scroller {
71 scroller scrollerDAT;
72 scrollerInfo *scrollerInfoDAT;
73 paletteInfo *paletteInfoDAT;
75
76typedef struct Adpcm_player {
80
81 //--------------------------------------------------------------------------//
82 // GFX //
83//--------------------------------------------------------------------------//
84
85 /*------------------*/
86 /* GFX INIT */
87/*------------------*/
89 GFX_Animated_Sprite *gfx_animated_sprite,
90 spriteInfo *spriteInfo,
91 paletteInfo *paletteInfo
92);
93
95 GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic,
96 spriteInfo *spriteInfo,
97 paletteInfo *paletteInfo,
98 short box_witdh,
99 short box_height,
100 short box_width_offset,
101 short box_height_offset
102);
103
105 GFX_Picture *gfx_picture,
106 pictureInfo *pictureInfo,
107 paletteInfo *paletteInfo
108);
109
111 GFX_Picture_Physic *gfx_picture_physic,
112 pictureInfo *pi,
113 paletteInfo *pali,
114 short box_witdh,
115 short box_height,
116 short box_width_offset,
117 short box_height_offset,
118 BOOL autobox_enabled
119);
120
122 GFX_Scroller *gfx_scroller,
123 scrollerInfo *scrollerInfo,
124 paletteInfo *paletteInfo
125);
126
127 /*------------------*/
128 /* GFX DISPLAY */
129/*------------------*/
130
132 GFX_Animated_Sprite *gfx_animated_sprite,
133 short x,
134 short y,
135 WORD anim
136);
137
139 GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic,
140 short x,
141 short y,
142 WORD anim
143);
144
145void nc_display_gfx_picture(GFX_Picture *gfx_picture, short x, short y);
146void nc_display_gfx_picture_physic(GFX_Picture_Physic *gfx_picture_physic, short x, short y);
147void nc_display_gfx_scroller(GFX_Scroller *gfx_scroller, short x, short y);
148
149void nc_debug_paletteInfo(paletteInfo *palette, BOOL palCount, BOOL data);
150
151 /*-----------------------*/
152 /* GFX INIT DISPLAY */
153/*-----------------------*/
154
156 GFX_Animated_Sprite *gfx_animated_sprite,
157 spriteInfo *spriteInfo,
158 paletteInfo *paletteInfo,
159 short x,
160 short y,
161 WORD anim
162);
163
165 GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic,
166 spriteInfo *spriteInfo,
167 paletteInfo *paletteInfo,
168 short x,
169 short y,
170 short box_witdh,
171 short box_height,
172 short box_width_offset,
173 short box_height_offset,
174 WORD anim
175);
176
178 GFX_Picture *gfx_picture,
179 pictureInfo *pictureInfo,
180 paletteInfo *paletteInfo,
181 short x,
182 short y
183);
184
186 GFX_Picture_Physic *gfx_picture_physic,
187 pictureInfo *pictureInfo,
188 paletteInfo *paletteInfo,
189 short x,
190 short y,
191 short box_witdh,
192 short box_height,
193 short box_width_offset,
194 short box_height_offset,
195 BOOL autobox_enabled
196);
197
199 GFX_Scroller *gfx_scroller,
200 scrollerInfo *scrollerInfo,
201 paletteInfo *paletteInfo,
202 short x,
203 short y
204);
205
206 /*------------------*/
207 /* GFX VISIBILITY */
208/*------------------*/
209
211
215
220
221 /*------------------*/
222 /* GFX POSITION */
223/*------------------*/
224
225/* GFX POSITION GETTER */
226
228
230 GFX_Animated_Sprite_Physic gfx_animated_sprite_physic
231);
232
236
237/* GFX POSITION SETTER */
238
239void nc_set_position_gfx_picture_physic(GFX_Picture_Physic *gfx_picture_physic, short x, short y);
240
242 GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic,
243 short x,
244 short y
245);
246
247void nc_set_position_gfx_scroller(GFX_Scroller *gfx_scroller, short x, short y);
248void nc_set_position_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite, short x, short y);
249void nc_set_position_gfx_picture(GFX_Picture *gfx_picture, short x, short y);
250
251/* GFX POSITION MOVE*/
252
253void nc_move_gfx_picture_physic(GFX_Picture_Physic *gfx_picture_physic, short x_offset, short y_offset);
254
256 GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic,
257 short x_offset,
258 short y_offset
259);
260
262 GFX_Animated_Sprite *gfx_animated_sprite,
263 short x_offset,
264 short y_offset
265);
266
267void nc_move_gfx_picture(GFX_Picture *gfx_picture, short x, short y);
268void nc_move_gfx_scroller(GFX_Scroller *gfx_scroller, short x, short y);
269
270 /*-------------------*/
271 /* GFX SHRUNK */
272/*-------------------*/
273
274#define nc_shrunk_extract_x(value) value >> 8
275#define nc_shrunk_extract_y(value) (BYTE)value
276
278 GFX_Picture *gfx_picture,
279 short center_x,
280 short center_y,
281 WORD shrunk_value
282);
283
284 /*-------------------*/
285 /* GFX ANIMATION */
286/*-------------------*/
287
288void nc_set_animation_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite, WORD anim);
289
291 GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic,
292 WORD anim
293);
294
296
298 GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic
299);
300
301 /*-------------------*/
302 /* GFX DESTROY */
303/*-------------------*/
304
308
311
312 //--------------------------------------------------------------------------//
313 // GPU //
314//--------------------------------------------------------------------------//
315
318
319 /*------------------------------*/
320 /* GPU VBL */
321/*------------------------------*/
322
323#define nc_wait_vbl() waitVBlank();
325DWORD nc_wait_vbl_max(WORD nb);
326
327 /*------------------------------*/
328 /* GPU SPRITE INDEX MANAGEMENT */
329/*------------------------------*/
330
334
335 /*---------------*/
336 /* GPU PALETTE */
337/*---------------*/
338
339void nc_destroy_palette(paletteInfo* paletteInfo);
343
344 /*--------------*/
345 /* GPU shrunk */
346/*--------------*/
347
349int nc_shrunk_centroid_get_translated_x(short centerPosX, WORD tileWidth, BYTE shrunkX);
350int nc_shrunk_centroid_get_translated_y(short centerPosY, WORD tileHeight, BYTE shrunkY);
351void nc_shrunk(WORD base_sprite, WORD max_width, WORD value);
352WORD nc_shrunk_forge(BYTE xc, BYTE yc);
353void nc_shrunk_addr(WORD addr, WORD shrunk_value);
354WORD nc_shrunk_range(WORD addr_start, WORD addr_end, WORD shrunk_value);
355
356 //--------------------------------------------------------------------------//
357 // MATH //
358//--------------------------------------------------------------------------//
359
360#define nc_bitwise_division_2(value) (value >> 1)
361#define nc_bitwise_division_4(value) (value >> 2)
362#define nc_bitwise_division_8(value) (value >> 3)
363#define nc_bitwise_division_16(value) (value >> 4)
364#define nc_bitwise_division_32(value) (value >> 5)
365#define nc_bitwise_division_64(value) (value >> 6)
366#define nc_bitwise_division_128(value) (value >> 7)
367#define nc_bitwise_division_256(value) (value >> 8)
368
369#define nc_bitwise_multiplication_2(value) (value << 1)
370#define nc_bitwise_multiplication_4(value) (value << 2)
371#define nc_bitwise_multiplication_8(value) (value << 3)
372#define nc_bitwise_multiplication_16(value) (value << 4)
373#define nc_bitwise_multiplication_32(value) (value << 5)
374#define nc_bitwise_multiplication_64(value) (value << 6)
375#define nc_bitwise_multiplication_128(value) (value << 7)
376#define nc_bitwise_multiplication_256(value) (value << 8)
377
378#define nc_random(range) rand() % range
379
380#define nc_min(a,b) ((a) < (b) ? (a) : (b))
381#define nc_max(a,b) ((a) > (b) ? (a) : (b))
382
383#define nc_abs(num) ((num) < 0 ? ~(num) + 1 : (num))
384#define nc_negative(num) -num
385
386#define nc_fix(num) num * 65536
387#define nc_fix_to_int(num) fixtoi(num)
388#define nc_int_to_fix(num) itofix(num)
389#define nc_fix_add(num1, num2) fadd(num1, num2)
390#define nc_fix_sub(num1, num2) fsub(num1, num2)
391#define nc_fix_mul(num1, num2) fmul(num1, num2)
392#define nc_cos(num) fcos(num)
393#define nc_tan(num) ftan(num)
394
395char nc_sin(WORD index);
396
397 //--------------------------------------------------------------------------//
398 // PHYSIC //
399//--------------------------------------------------------------------------//
400
401#define nc_copy_box(box_src, box_dest) memcpy(box_dest, box_src, sizeof(Box))
402
403BYTE nc_collide_boxes(Box *box, Box *boxes[], BYTE box_max);
404BOOL nc_collide_box(Box *box1, Box *box2);
405void nc_init_box(Box *box, short width, short height, short widthOffset, short heightOffset);
406void nc_update_box(Box *box, short x, short y);
407
408//void mask_display(picture pic[], Vec2short vec[], BYTE vector_max); // todo (minor) - rename ? (vectorsDisplay)
409void nc_update_mask(short x, short y, Vec2short vec[], Vec2short offset[], BYTE vector_max); // todo (minor) - rename ? (vectorsDebug)
410
411void nc_shrunk_box(Box *box, Box *bOrigin, WORD shrunkValue);
412void nc_resize_box(Box *Box, short edge); // todo (minor) - deprecated ?
413
414 //--------------------------------------------------------------------------//
415 // SOUND //
416//--------------------------------------------------------------------------//
417
418 //---------
419 // CDDA
420//-----------
421
422void nc_play_cdda(BYTE track);
425#define nc_stop_cdda() nc_pause_cdda()
426
427 //--------
428 // ADPCM
429//----------
430
432
433 //----------------------------------------------------------------------------//
434 // JOYPAD //
435//----------------------------------------------------------------------------//
436
437void nc_set_joypad_edge_mode(BOOL actived);
438void nc_update_joypad(BYTE id);
439void nc_joypad_update(BYTE id);
440
441BOOL nc_joypad_is_up(BYTE id);
442BOOL nc_joypad_is_down(BYTE id);
443BOOL nc_joypad_is_left(BYTE id);
444BOOL nc_joypad_is_right(BYTE id);
445BOOL nc_joypad_is_start(BYTE id);
446BOOL nc_joypad_is_a(BYTE id);
447BOOL nc_joypad_is_b(BYTE id);
448BOOL nc_joypad_is_c(BYTE id);
449BOOL nc_joypad_is_d(BYTE id);
450
451void nc_debug_joypad(BYTE id);
452
453 //----------------------------------------------------------------------------//
454 // UTIL //
455//----------------------------------------------------------------------------//
456
457DWORD nc_frame_to_second(DWORD frame);
458DWORD nc_second_to_frame(DWORD second);
460void nc_reset();
462void nc_pause(BOOL (*exitFunc)());
463void nc_sleep(DWORD frame);
464BOOL nc_each_frame(DWORD frame);
465void nc_print(int x, int y, char *label);
467#define nc_get_frame_counter() DAT_frameCounter
468
469 /*---------------*/
470 /* UTIL LOGGER */
471/*---------------*/
472
474void nc_set_position_log(WORD _x, WORD _y);
475
476WORD nc_log_info(char *txt);
477void nc_log(char *message);
478
479void nc_log_word(char *label, WORD value);
480void nc_log_int(char *label, int value);
481void nc_log_dword(char *label, DWORD value);
482void nc_log_short(char *label, short value);
483void nc_log_byte(char *label, BYTE value);
484void nc_log_bool(char *label, BOOL value);
485void nc_log_spriteInfo(char *label, spriteInfo *si);
486void nc_log_box(char *label, Box *b);
487void nc_log_pictureInfo(char *label, pictureInfo *pi);
488void nc_log_vec2short(char *label, Vec2short vec2short);
489
490 /*---------------*/
491 /* SOUND */
492/*---------------*/
493
498
499 /*---------------*/
500 /* UTIL VECTOR */
501/*---------------*/
502
503BOOL nc_vectors_collide(Box *box, Vec2short vec[], BYTE vector_max);
504BOOL nc_vector_is_left(short x, short y, short v1x, short v1y, short v2x, short v2y);
505
506#endif
void nc_init_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite, spriteInfo *spriteInfo, paletteInfo *paletteInfo)
void nc_display_gfx_picture(GFX_Picture *gfx_picture, short x, short y)
void nc_init_adpcm()
void nc_init_display_gfx_scroller(GFX_Scroller *gfx_scroller, scrollerInfo *scrollerInfo, paletteInfo *paletteInfo, short x, short y)
void nc_init_system()
void nc_hide_gfx_picture_physic(GFX_Picture_Physic *gfx_picture_physic)
BOOL nc_joypad_is_down(BYTE id)
void nc_log_int(char *label, int value)
BOOL nc_vector_is_left(short x, short y, short v1x, short v1y, short v2x, short v2y)
void nc_debug_paletteInfo(paletteInfo *palette, BOOL palCount, BOOL data)
void nc_init_display_gfx_picture(GFX_Picture *gfx_picture, pictureInfo *pictureInfo, paletteInfo *paletteInfo, short x, short y)
void nc_display_gfx_picture_physic(GFX_Picture_Physic *gfx_picture_physic, short x, short y)
Direction
Definition: neocore.h:20
@ DOWN
Definition: neocore.h:20
@ UP
Definition: neocore.h:20
@ NONE
Definition: neocore.h:20
@ LEFT
Definition: neocore.h:20
@ RIGHT
Definition: neocore.h:20
void nc_stop_adpcm()
void nc_update_animation_gfx_animated_sprite_physic(GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic)
void nc_init_gfx_picture_physic(GFX_Picture_Physic *gfx_picture_physic, pictureInfo *pi, paletteInfo *pali, short box_witdh, short box_height, short box_width_offset, short box_height_offset, BOOL autobox_enabled)
void nc_log_vec2short(char *label, Vec2short vec2short)
void nc_init_box(Box *box, short width, short height, short widthOffset, short heightOffset)
void nc_pause(BOOL(*exitFunc)())
void nc_show_gfx_animated_sprite_physic(GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic)
void nc_clear_vram()
BOOL nc_each_frame(DWORD frame)
void nc_move_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite, short x_offset, short y_offset)
BOOL nc_joypad_is_a(BYTE id)
void nc_shrunk_addr(WORD addr, WORD shrunk_value)
void nc_destroy_gfx_animated_sprite_physic(GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic)
void nc_sleep(DWORD frame)
void nc_init_display_gfx_animated_sprite_physic(GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic, spriteInfo *spriteInfo, paletteInfo *paletteInfo, short x, short y, short box_witdh, short box_height, short box_width_offset, short box_height_offset, WORD anim)
void nc_set_animation_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite, WORD anim)
Vec2short nc_get_relative_position(Box box, Vec2short world_coord)
BYTE nc_collide_boxes(Box *box, Box *boxes[], BYTE box_max)
void nc_move_gfx_picture_physic(GFX_Picture_Physic *gfx_picture_physic, short x_offset, short y_offset)
void nc_update_mask(short x, short y, Vec2short vec[], Vec2short offset[], BYTE vector_max)
void nc_push_remaining_frame_adpcm_player(DWORD frame)
int nc_shrunk_centroid_get_translated_x(short centerPosX, WORD tileWidth, BYTE shrunkX)
DWORD nc_wait_vbl_max(WORD nb)
WORD nc_shrunk_forge(BYTE xc, BYTE yc)
void nc_log_pictureInfo(char *label, pictureInfo *pi)
void nc_debug_joypad(BYTE id)
Adpcm_player * nc_get_adpcm_player()
WORD nc_get_max_sprite_index_used()
WORD nc_get_max_free_palette_index()
Vec2short nc_get_position_gfx_animated_sprite_physic(GFX_Animated_Sprite_Physic gfx_animated_sprite_physic)
void nc_set_position_gfx_picture(GFX_Picture *gfx_picture, short x, short y)
void nc_show_gfx_picture(GFX_Picture *gfx_picture)
void nc_log_word(char *label, WORD value)
void nc_init_display_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite, spriteInfo *spriteInfo, paletteInfo *paletteInfo, short x, short y, WORD anim)
BOOL nc_joypad_is_up(BYTE id)
void nc_show_gfx_picture_physic(GFX_Picture_Physic *gfx_picture_physic)
Vec2short nc_get_position_gfx_scroller(GFX_Scroller gfx_scroller)
void nc_set_position_gfx_picture_physic(GFX_Picture_Physic *gfx_picture_physic, short x, short y)
void nc_destroy_gfx_picture(GFX_Picture *gfx_picture)
BOOL nc_collide_box(Box *box1, Box *box2)
void nc_init_gfx_picture(GFX_Picture *gfx_picture, pictureInfo *pictureInfo, paletteInfo *paletteInfo)
WORD nc_get_max_palette_index_used()
void nc_log_short(char *label, short value)
void nc_update()
WORD nc_get_max_free_sprite_index()
void nc_shrunk_centroid_gfx_picture(GFX_Picture *gfx_picture, short center_x, short center_y, WORD shrunk_value)
void nc_init_gfx_scroller(GFX_Scroller *gfx_scroller, scrollerInfo *scrollerInfo, paletteInfo *paletteInfo)
void nc_set_position_gfx_scroller(GFX_Scroller *gfx_scroller, short x, short y)
void nc_log_bool(char *label, BOOL value)
void nc_move_gfx_scroller(GFX_Scroller *gfx_scroller, short x, short y)
BOOL nc_joypad_is_right(BYTE id)
void nc_hide_gfx_picture(GFX_Picture *gfx_picture)
void nc_resume_cdda()
void nc_log_dword(char *label, DWORD value)
void nc_set_joypad_edge_mode(BOOL actived)
BOOL nc_vectors_collide(Box *box, Vec2short vec[], BYTE vector_max)
void nc_play_cdda(BYTE track)
void nc_init_display_gfx_picture_physic(GFX_Picture_Physic *gfx_picture_physic, pictureInfo *pictureInfo, paletteInfo *paletteInfo, short x, short y, short box_witdh, short box_height, short box_width_offset, short box_height_offset, BOOL autobox_enabled)
void nc_move_gfx_animated_sprite_physic(GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic, short x_offset, short y_offset)
void nc_clear_palette_index_table()
void nc_destroy_gfx_picture_physic(GFX_Picture_Physic *gfx_picture_physic)
void nc_display_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite, short x, short y, WORD anim)
void nc_move_gfx_picture(GFX_Picture *gfx_picture, short x, short y)
BOOL nc_joypad_is_start(BYTE id)
void nc_set_animation_gfx_animated_sprite_physic(GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic, WORD anim)
void nc_display_gfx_scroller(GFX_Scroller *gfx_scroller, short x, short y)
BOOL nc_joypad_is_c(BYTE id)
Sound_state
Definition: neocore.h:21
@ PLAYING
Definition: neocore.h:21
@ IDLE
Definition: neocore.h:21
BOOL nc_joypad_is_b(BYTE id)
BOOL nc_joypad_is_left(BYTE id)
void nc_shrunk_box(Box *box, Box *bOrigin, WORD shrunkValue)
void nc_log_box(char *label, Box *b)
DWORD nc_frame_to_second(DWORD frame)
void nc_hide_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite)
void nc_update_adpcm_player()
WORD nc_free_ram_info()
void nc_reset()
WORD nc_shrunk_range(WORD addr_start, WORD addr_end, WORD shrunk_value)
Vec2short nc_get_position_gfx_picture_physic(GFX_Picture_Physic gfx_picture_physic)
void nc_destroy_palette(paletteInfo *paletteInfo)
void nc_destroy_gfx_scroller(GFX_Scroller *gfx_scroller)
WORD nc_get_shrunk_proportional_table(WORD index)
void nc_log_byte(char *label, BYTE value)
void nc_log_spriteInfo(char *label, spriteInfo *si)
void nc_set_position_log(WORD _x, WORD _y)
void nc_pause_cdda()
void nc_init_gfx_animated_sprite_physic(GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic, spriteInfo *spriteInfo, paletteInfo *paletteInfo, short box_witdh, short box_height, short box_width_offset, short box_height_offset)
void nc_init_log()
void nc_set_position_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite, short x, short y)
void nc_set_position_gfx_animated_sprite_physic(GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic, short x, short y)
void nc_update_joypad(BYTE id)
Vec2short nc_get_position_gfx_animated_sprite(GFX_Animated_Sprite gfx_animated_sprite)
char nc_sin(WORD index)
DWORD nc_second_to_frame(DWORD second)
void nc_print(int x, int y, char *label)
void nc_resize_box(Box *Box, short edge)
void nc_update_animation_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite)
void nc_log(char *message)
void nc_init_gpu()
void nc_display_gfx_animated_sprite_physic(GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic, short x, short y, WORD anim)
void nc_joypad_update(BYTE id)
void nc_hide_gfx_animated_sprite_physic(GFX_Animated_Sprite_Physic *gfx_animated_sprite_physic)
Vec2short nc_get_position_gfx_picture(GFX_Picture gfx_picture)
void nc_destroy_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite)
void nc_clear_sprite_index_table()
BOOL nc_joypad_is_d(BYTE id)
void nc_update_box(Box *box, short x, short y)
WORD nc_log_info(char *txt)
void nc_show_gfx_animated_sprite(GFX_Animated_Sprite *gfx_animated_sprite)
int nc_shrunk_centroid_get_translated_y(short centerPosY, WORD tileHeight, BYTE shrunkY)
void nc_shrunk(WORD base_sprite, WORD max_width, WORD value)
DWORD remaining_frame
Definition: neocore.h:78
enum Sound_state state
Definition: neocore.h:77
Definition: neocore.h:31
Vec2short p4
Definition: neocore.h:36
Vec2short p3
Definition: neocore.h:35
short width
Definition: neocore.h:37
Vec2short p0
Definition: neocore.h:32
short heightOffset
Definition: neocore.h:40
Vec2short p2
Definition: neocore.h:34
short height
Definition: neocore.h:38
Vec2short p1
Definition: neocore.h:33
short widthOffset
Definition: neocore.h:39
GFX_Animated_Sprite gfx_animated_sprite
Definition: neocore.h:58
aSprite aSpriteDAT
Definition: neocore.h:44
paletteInfo * paletteInfoDAT
Definition: neocore.h:46
spriteInfo * spriteInfoDAT
Definition: neocore.h:45
BOOL physic_enabled
Definition: neocore.h:67
GFX_Picture gfx_picture
Definition: neocore.h:64
BOOL autobox_enabled
Definition: neocore.h:66
picture pictureDAT
Definition: neocore.h:50
pictureInfo * pictureInfoDAT
Definition: neocore.h:51
WORD pixel_width
Definition: neocore.h:54
paletteInfo * paletteInfoDAT
Definition: neocore.h:52
WORD pixel_height
Definition: neocore.h:53
scroller scrollerDAT
Definition: neocore.h:71
paletteInfo * paletteInfoDAT
Definition: neocore.h:73
scrollerInfo * scrollerInfoDAT
Definition: neocore.h:72
BYTE x
Definition: neocore.h:29
BYTE y
Definition: neocore.h:29
int y
Definition: neocore.h:27
int x
Definition: neocore.h:27
short y
Definition: neocore.h:28
short x
Definition: neocore.h:28