neocore
neocore.h
Go to the documentation of this file.
1 /*
2  David Vandensteen
3  2018
4 */
5  // short -> 2 bytes
6  // word -> 2 bytes
7  // dword -> 4 bytes
8  // char -> 1 byte
9  // int -> 4 bytes
10  // byte -> 1 byte
11 
12 
13 #ifndef NEOCORE_H
14 #define NEOCORE_H
15 #include <DATlib.h>
16 #include <math.h>
17 
18 #define NEOCORE_INIT \
19  typedef struct bkp_ram_info { \
20  WORD debug_dips; \
21  BYTE stuff[254]; \
22  } bkp_ram_info; \
23  bkp_ram_info bkp_data;
24 
25 #define GPU_INIT gpu_init();
26 
27 #define __ALIGN1__ __attribute__ ((aligned (1)))
28 #define __ALIGN2__ __attribute__ ((aligned (2)))
29 #define __ALIGN4__ __attribute__ ((aligned (4)))
30 #define __ALIGN64__ __attribute__ ((aligned (64)))
31 #define __ALIGN128__ __attribute__ ((aligned (128)))
32 
33 #define MULT2 << 1
34 #define MULT4 << 2
35 #define MULT8 << 3
36 #define MULT16 << 4
37 #define MULT32 << 5
38 #define MULT64 << 6
39 #define DIV2 >> 1
40 #define DIV4 >> 2
41 #define DIV8 >> 3
42 #define DIV16 >> 4
43 #define DIV32 >> 5
44 #define DIV64 >> 6
45 
46 #define Y_OFFSCREEN 240
47 #define X 0
48 #define Y 1
49 
50 #define SHRUNK_TABLE_PROP_SIZE 0x2fe
51 
52 #define JOYPAD BYTE p1, ps;
53 #define JOYPAD_READ p1 = volMEMBYTE(P1_CURRENT); ps = volMEMBYTE(PS_CURRENT);
54 #define JOYPAD_READ_EDGE p1 = volMEMBYTE(P1_EDGE); ps = volMEMBYTE(PS_EDGE);
55 #define JOYPAD_IS_UP p1&JOY_UP
56 #define JOYPAD_IS_DOWN p1&JOY_DOWN
57 #define JOYPAD_IS_LEFT p1&JOY_LEFT
58 #define JOYPAD_IS_RIGHT p1&JOY_RIGHT
59 #define JOYPAD_IS_START ps&P1_START
60 #define JOYPAD_IS_A p1&JOY_A
61 #define JOYPAD_IS_B p1&JOY_B
62 #define JOYPAD_IS_C p1&JOY_C
63 #define JOYPAD_IS_D p1&JOY_D
64 
65 #define LOGGER_ON
66 #define LOGGER_X_INIT 1
67 #define LOGGER_Y_INIT 2
68 
69 #define BOXCOPY(bFrom, bTo) memcpy(bTo, bFrom, sizeof(Box))
70 
71 #define FIX(value) value * 65536
72 #define RAND(value) rand() % value
73 
74 #define SHRUNK_EXTRACT_X(value) value >> 8
75 #define SHRUNK_EXTRACT_Y(value) (BYTE)value
76 
77 enum direction { NONE, UP, DOWN, LEFT, RIGHT };
78 
83 typedef struct Vec2int Vec2int;
84 struct Vec2int {
85  int x;
86  int y;
87 };
88 
93 typedef struct Vec2short Vec2short;
94 struct Vec2short {
95  short x;
96  short y;
97 };
98 
103 typedef struct Vec2byte Vec2byte;
104 struct Vec2byte {
105  BYTE x;
106  BYTE y;
107 };
108 
117 typedef struct Box Box;
118 struct Box {
124  short width;
125  short height;
126  short widthOffset;
127  short heightOffset;
128 };
129 
130 /* todo (minor) - to remove
131 typedef struct picture5 picture5;
132 struct picture5 {
133  picture pic0;
134  picture pic1;
135  picture pic2;
136  picture pic3;
137  picture pic4;
138 };
139 */
140 
149 typedef struct Flash Flash;
150 struct Flash {
151  WORD frequency;
152  WORD lengh;
153  BOOL visible;
154  BOOL enabled;
155 };
156 
163  aSprite as;
164  spriteInfo *si;
165  paletteInfo *pali;
167 };
168 
173 typedef struct Image Image;
174 struct Image {
175  picture pic;
176  pictureInfo *pi;
177  paletteInfo *pali;
179 };
180 
192 };
193 
200 typedef struct Image_Physic Image_Physic;
201 struct Image_Physic {
205 };
206 
211 typedef struct Scroller Scroller;
212 struct Scroller {
213  scroller s;
214  scrollerInfo *si;
215  paletteInfo *pali;
216 };
217 
218 /* todo (minor) - to remove
219 typedef struct picturePhysic picturePhysic;
220 struct picturePhysic {
221  picture p;
222  Box box;
223  BOOL visible;
224 };
225 */
226 
227 /* todo (minor) - to remake
228 typedef struct picturePhysicShrunkCentroid picturePhysicShrunkCentroid;
229 struct picturePhysicShrunkCentroid {
230  picturePhysic pp;
231  pictureInfo *pi;
232  paletteInfo *pali;
233  Vec2short positionCenter;
234  Box boxOrigin;
235 };
236 */
237 
238  //--------------------------------------------------------------------------//
239  // -A //
240 //--------------------------------------------------------------------------//
241  /*------------------*/
242  /* -animated_sprite */
243 /*------------------*/
253  Animated_Sprite_Physic *animated_sprite_physic,
254  spriteInfo *si,
255  paletteInfo *pali,
256  short box_witdh,
257  short box_height,
258  short box_width_offset,
259  short box_height_offset
260 );
261 
267 void animated_sprite_init(Animated_Sprite *animated_sprite ,spriteInfo *si, paletteInfo *pali);
268 
275 void animated_sprite_display(Animated_Sprite *animated_sprite, short x, short y, WORD anim);
276 
282 #define animated_sprite_move(animated_sprite, x_offset, y_offset) aSpriteMove(animated_sprite.as, x_offset, y_offset)
283 
289 #define animated_sprite_set_position(animated_sprite, x, y) aSpriteSetPos(animated_sprite.as, x, y)
290 
294 void animated_sprite_hide(Animated_Sprite *animated_sprite);
295 
299 void animated_sprite_show(Animated_Sprite *animated_sprite);
300 
305 void animated_sprite_set_animation(Animated_Sprite *animated_sprite, WORD anim);
306 
311 #define animated_sprite_animate(animated_sprite) aSpriteAnimate(animated_sprite.as)
312 
318 BOOL animated_sprite_flash(Animated_Sprite *animated_sprite);
319 
320  /*--------------------------*/
321  /* -animated_sprite_physic */
322 /*--------------------------*/
329 void animated_sprite_physic_display(Animated_Sprite_Physic *animated_sprite_physic, short x, short y, WORD anim);
330 // void animated_sprite_physic_collide(aSpritePhysic *asp, Box *box); // todo - not implementd ??? needed ???
331 
337 void animated_sprite_physic_set_position(Animated_Sprite_Physic *animated_sprite_physic, short x, short y);
338 
344 void animated_sprite_physic_move(Animated_Sprite_Physic *animated_sprite_physic, short x_offset, short y_offset);
345 
350 void animated_sprite_physic_shrunk(Animated_Sprite_Physic *animated_sprite_physic, WORD shrunk_value); // todo (minor)
351 
356 void animated_sprite_physic_hide(Animated_Sprite_Physic *animated_sprite_physic);
357 
362 void animated_sprite_physic_show(Animated_Sprite_Physic *animated_sprite_physic);
363 
368 void animated_sprite_physic_flash(Animated_Sprite_Physic *animated_sprite_physic);
369 
370 
371  //--------------------------------------------------------------------------//
372  // -B //
373 //--------------------------------------------------------------------------//
381 BYTE boxes_collide(Box *b, Box *boxes[], BYTE box_max);
382 
389 BOOL box_collide(Box *b1, Box *b2);
390 
398 void box_init(Box *b, short width, short height, short widthOffset, short heightOffset);
399 
406 void box_update(Box *b, short x, short y);
407 // void box_debug_update(picture5 *pics, Box *box); // todo (minor)
408 // void box_display(picture5 *pics, Box *box, pictureInfo *pi, paletteInfo *pali); // todo (minor)
409 
414 // todo (minor)
415 void box_shrunk(Box *b, Box *bOrigin, WORD shrunkValue);
416 // todo (minor) - deprecated ?
417 void box_resize(Box *Box, short edge); // todo (minor) - deprecated ?
418 
419  //--------------------------------------------------------------------------//
420  // -C //
421 //--------------------------------------------------------------------------//
422 void inline clear_vram();
423 
424  //--------------------------------------------------------------------------//
425  // -F //
426 //--------------------------------------------------------------------------//
432 void inline fix_print_neocore(int x, int y, char *label);
433 
439 void flash_init(Flash *flash, short frequency, short lengh);
440 
441  //-----------------------------------------------------------------s---------//
442  // -G //
443 //--------------------------------------------------------------------------//
444 void inline gpu_init();
448 WORD get_sprite_index();
449 
454 WORD get_sprite_index_from_picture(pictureInfo *pi);
455 
460 WORD get_sprite_index_from_sprite(spriteInfo *si);
461 
465 BYTE get_palette_index();
466 
471 WORD get_shrunk_proportional_table(WORD index);
472 
476 char get_sin(WORD index);
477 
478  //--------------------------------------------------------------------------//
479  // -I //
480 //--------------------------------------------------------------------------//
485 BOOL is_visible(Flash *flash);
486 
487  /*------------------*/
488  /* -image */
489 /*------------------*/
495 void image_init(Image *image, pictureInfo *pi, paletteInfo *pali);
496 
502 void image_display(Image *image, short x, short y);
503 
509 #define image_move(image, x_offset, y_offset) pictureMove(image.pic, x_offset, y_offset)
510 
516 void image_set_position(Image *image, short x, short y);
517 
522 void image_hide(Image *image);
523 
528 void image_show(Image *image);
529 
534 void image_is_visible(Image *image);
535 
539 BOOL image_flash(Image *image);
540 
547 void image_shrunk_centroid(Image *image, short center_x, short center_y, WORD shrunk_value);
548 
549  /*------------------*/
550  /* -image_physic */
551 /*------------------*/
561 void image_physic_init(
562  Image_Physic *image_physic,
563  pictureInfo *pi,
564  paletteInfo *pali,
565  short box_witdh,
566  short box_height,
567  short box_width_offset,
568  short box_height_offset
569 );
570 
576 void image_physic_display(Image_Physic *image_physic, short x, short y);
577 
583 void image_physic_move(Image_Physic *image_physic, short x_offset, short y_offset);
584 
590 void image_physic_set_position(Image_Physic *image_physic, short x, short y);
591 
596 void image_physic_hide(Image_Physic *image_physic);
597 
602 void image_physic_show(Image_Physic *image_physic);
603 
607 void image_physic_flash(Image_Physic *image_physic);
608 
613 void image_physic_shrunk(Image_Physic *image_physic, WORD shrunk_value); // todo (minor) - shrunk box
614 
615 /* todo (minor) - deprecated
616 void image_physic_shrunk_centroid_init(picturePhysicShrunkCentroid *pps, pictureInfo *pi, paletteInfo *pali, short xCenter, short yCenter);
617 void image_physic_shrunk_centroid_set_position(picturePhysicShrunkCentroid *pps, short x, short y);
618 void image_physic_shrunk_centroid_move(picturePhysicShrunkCentroid *pps, short xShift, short yShift);
619 void image_physic_shrunk_centroid_update(picturePhysicShrunkCentroid *pps, WORD shrunk);
620 void image_physic_shrunk_centroid_display(picturePhysicShrunkCentroid *pps, WORD shrunk);
621 void image_physic_display(picturePhysic *pp, pictureInfo *pi, paletteInfo *pali, short posX, short posY);
622 void image_physic_set_position(picturePhysic *pp, short x, short y);
623 void image_physic_move(picturePhysic *pp, short x, short y);
624 void image_shrunk(picture *p, pictureInfo *pi, WORD shrunk_value);
625 void images_show(picture *p, WORD max, BOOL visible);
626 void image5_show(picture5 *pics, BOOL visible);
627 void image_display(picture *p, pictureInfo *pi, paletteInfo *pali, short posX, short posY);
628 void image_shrunk_centroid(picture *p, pictureInfo *pi, short centerPosX, short centerPosY, WORD shrunk_value);
629 void image_flash(picture *p, BYTE freq);
630 WORD image_get_sprite_index_autoinc(pictureInfo *pi);
631 */
632 
633 
634  //--------------------------------------------------------------------------//
635  // -J //
636 //--------------------------------------------------------------------------//
637  /*----------*/
638  /* -joypad */
639 /*----------*/
640 void joypad_update();
641 void joypad_update_edge();
642 BOOL joypad_is_up();
643 BOOL joypad_is_down();
644 BOOL joypad_is_left();
645 BOOL joypad_is_right();
646 BOOL joypad_is_start();
647 BOOL joypad_is_a();
648 BOOL joypad_is_b();
649 BOOL joypad_is_c();
650 BOOL joypad_is_d();
651 void inline joypad_debug();
652 
653  //--------------------------------------------------------------------------//
654  // -L //
655 //--------------------------------------------------------------------------//
656  /*----------*/
657  /* -logger */
658 /*----------*/
659 void logger_init();
660 void logger_set_position(WORD _x, WORD _y);
661 WORD inline logger_info(char *txt);
662 void inline logger_word(char *label, WORD value);
663 void inline logger_int(char *label, int value);
664 void inline logger_dword(char *label, DWORD value);
665 void inline logger_short(char *label, short value);
666 void inline logger_byte(char *label, BYTE value);
667 void inline logger_bool(char *label, BOOL value);
668 void inline logger_animated_sprite(char *label, Animated_Sprite *animated_sprite);
669 void inline logger_spriteInfo(char *label, spriteInfo *si);
670 void inline logger_box(char *label, Box *b);
671 void inline logger_pictureInfo(char *label, pictureInfo *pi);
672 
673  //--------------------------------------------------------------------------//
674  // -P //
675 //--------------------------------------------------------------------------//
676  /*-----------*/
677  /* -palette */
678 /*-----------*/
683 
688 
689 // m
690 //void mask_display(picture pic[], Vec2short vec[], BYTE vector_max); // todo (minor) - rename ? (vectorsDisplay)
691 void mask_update(short x, short y, Vec2short vec[], Vec2short offset[], BYTE vector_max); // todo (minor) - rename ? (vectorsDebug)
692 // todo (minor) - hardcode point\dot asset
693 
694  //--------------------------------------------------------------------------//
695  // -V //
696 //--------------------------------------------------------------------------//
703 void vec2int_init(Vec2int *vec, int x, int y);
704 
711 void vec2short_init(Vec2short *vec, short x, short y);
712 
719 void vec2byte_init(Vec2byte *vec, BYTE x, BYTE y);
720 
726 BOOL vectors_collide(Box *box, Vec2short vec[], BYTE vector_max);
727 
736 BOOL vector_is_left(short x, short y, short v1x, short v1y, short v2x, short v2y);
737 
738  //--------------------------------------------------------------------------//
739  // -S //
740 //--------------------------------------------------------------------------//
744 void set_sprite_index(WORD index);
745 
749 BYTE set_palette_index(BYTE index);
750 
751  /*-----------*/
752  /* -scroller */
753 /*-----------*/
759 void scroller_init(Scroller *s, scrollerInfo *si, paletteInfo *pali);
760 
766 void scroller_display(Scroller *s, short x, short y);
767 
773 void scroller_move(Scroller *s, short x, short y);
774 
780 void scroller_set_position(Scroller *s, short x, short y);
781 
782  /*-----------*/
783  /* -shrunk */
784 /*-----------*/
792 int shrunk_centroid_get_translated_x(short centerPosX, WORD tileWidth, BYTE shrunkX);
793 
801 int shrunk_centroid_get_translated_y(short centerPosY, WORD tileHeight, BYTE shrunkY);
802 
808 void shrunk(WORD base_sprite, WORD max_width, WORD value);
809 
815 WORD shrunk_forge(BYTE xc, BYTE yc);
816 
821 void inline shrunk_addr(WORD addr, WORD shrunk_value);
822 
828 WORD shrunk_range(WORD addr_start, WORD addr_end, WORD shrunk_value);
829 
830  //--------------------------------------------------------------------------//
831  // -W //
832 //--------------------------------------------------------------------------//
836 DWORD inline wait_vbl_max(WORD nb);
837 #define WAIT_VBL waitVBlank();
838 
839 #endif
Definition: neocore.h:77
BOOL vector_is_left(short x, short y, short v1x, short v1y, short v2x, short v2y)
Definition: neocore.c:726
void image_hide(Image *image)
hide Image
Definition: neocore.c:441
WORD frequency
Definition: neocore.h:151
BYTE boxes_collide(Box *b, Box *boxes[], BYTE box_max)
check if a box is colliding with a box list
Definition: neocore.c:228
Image encapsulation with Box.
Definition: neocore.h:201
WORD lengh
Definition: neocore.h:152
void fix_print_neocore(int x, int y, char *label)
Definition: neocore.c:350
BOOL joypad_is_c()
Definition: neocore.c:562
void logger_byte(char *label, BYTE value)
Definition: neocore.c:632
BOOL joypad_is_b()
Definition: neocore.c:561
collider definition
Definition: neocore.h:118
short width
Definition: neocore.h:124
BOOL joypad_is_up()
Definition: neocore.c:555
void box_init(Box *b, short width, short height, short widthOffset, short heightOffset)
Definition: neocore.c:259
void mask_update(short x, short y, Vec2short vec[], Vec2short offset[], BYTE vector_max)
Definition: neocore.c:951
BOOL joypad_is_down()
Definition: neocore.c:556
WORD logger_info(char *txt)
Definition: neocore.c:588
int x
Definition: neocore.h:85
Vec2short p4
Definition: neocore.h:123
DATLib picture structure encapsulation.
Definition: neocore.h:174
WORD get_sprite_index()
Definition: neocore.c:372
void logger_bool(char *label, BOOL value)
Definition: neocore.c:641
content x & y short coordinate
Definition: neocore.h:94
void logger_int(char *label, int value)
Definition: neocore.c:605
Definition: neocore.h:77
BOOL vectors_collide(Box *box, Vec2short vec[], BYTE vector_max)
Definition: neocore.c:739
BOOL animated_sprite_flash(Animated_Sprite *animated_sprite)
refresh flash
Definition: neocore.c:126
BOOL box_collide(Box *b1, Box *b2)
check if two box is colliding
Definition: neocore.c:245
pictureInfo * pi
Definition: neocore.h:176
picture pic
Definition: neocore.h:175
direction
Definition: neocore.h:77
void image_show(Image *image)
show Image
Definition: neocore.c:446
content x & y byte coordinate
Definition: neocore.h:104
BOOL visible
Definition: neocore.h:153
void image_init(Image *image, pictureInfo *pi, paletteInfo *pali)
Definition: neocore.c:410
void animated_sprite_display(Animated_Sprite *animated_sprite, short x, short y, WORD anim)
Definition: neocore.c:104
int y
Definition: neocore.h:86
BOOL joypad_is_left()
Definition: neocore.c:557
void image_physic_move(Image_Physic *image_physic, short x_offset, short y_offset)
Definition: neocore.c:490
BYTE y
Definition: neocore.h:106
BOOL joypad_is_start()
Definition: neocore.c:559
void box_update(Box *b, short x, short y)
refresh Box position
Definition: neocore.c:266
void box_resize(Box *Box, short edge)
Definition: neocore.c:318
Vec2short p1
Definition: neocore.h:120
void scroller_display(Scroller *s, short x, short y)
Definition: neocore.c:771
void set_sprite_index(WORD index)
BOOL is_visible(Flash *flash)
Definition: neocore.c:403
void image_physic_flash(Image_Physic *image_physic)
Definition: neocore.c:510
void box_shrunk(Box *b, Box *bOrigin, WORD shrunkValue)
Definition: neocore.c:283
void animated_sprite_physic_set_position(Animated_Sprite_Physic *animated_sprite_physic, short x, short y)
Definition: neocore.c:196
void animated_sprite_physic_init(Animated_Sprite_Physic *animated_sprite_physic, spriteInfo *si, paletteInfo *pali, short box_witdh, short box_height, short box_width_offset, short box_height_offset)
Definition: neocore.c:162
spriteInfo * si
Definition: neocore.h:164
void image_physic_shrunk(Image_Physic *image_physic, WORD shrunk_value)
Definition: neocore.c:514
void scroller_init(Scroller *s, scrollerInfo *si, paletteInfo *pali)
Definition: neocore.c:795
void animated_sprite_physic_move(Animated_Sprite_Physic *animated_sprite_physic, short x_offset, short y_offset)
Definition: neocore.c:201
Definition: neocore.h:150
void image_is_visible(Image *image)
void animated_sprite_physic_flash(Animated_Sprite_Physic *animated_sprite_physic)
refresh a Animated_Sprite_Physic flash
Definition: neocore.c:221
void animated_sprite_physic_shrunk(Animated_Sprite_Physic *animated_sprite_physic, WORD shrunk_value)
Definition: neocore.c:206
BOOL image_flash(Image *image)
Definition: neocore.c:451
void image_shrunk_centroid(Image *image, short center_x, short center_y, WORD shrunk_value)
Definition: neocore.c:519
void animated_sprite_physic_display(Animated_Sprite_Physic *animated_sprite_physic, short x, short y, WORD anim)
Definition: neocore.c:186
BOOL joypad_is_a()
Definition: neocore.c:560
Animated_Sprite animated_sprite
Definition: neocore.h:189
scroller s
Definition: neocore.h:213
void shrunk(WORD base_sprite, WORD max_width, WORD value)
Definition: neocore.c:826
void logger_box(char *label, Box *b)
Definition: neocore.c:677
BOOL joypad_is_right()
Definition: neocore.c:558
void flash_init(Flash *flash, short frequency, short lengh)
Definition: neocore.c:354
WORD shrunk_range(WORD addr_start, WORD addr_end, WORD shrunk_value)
Definition: neocore.c:817
Image image
Definition: neocore.h:202
void vec2int_init(Vec2int *vec, int x, int y)
init a Vec2int structure
Definition: neocore.c:735
void vec2short_init(Vec2short *vec, short x, short y)
init a Vec2short structure
Definition: neocore.c:736
BYTE get_palette_index()
WORD get_shrunk_proportional_table(WORD index)
Definition: neocore.c:392
short y
Definition: neocore.h:96
Definition: neocore.h:77
short height
Definition: neocore.h:125
BOOL joypad_is_d()
Definition: neocore.c:563
DWORD wait_vbl_max(WORD nb)
Definition: neocore.c:845
void logger_init()
Definition: neocore.c:571
void animated_sprite_init(Animated_Sprite *animated_sprite, spriteInfo *si, paletteInfo *pali)
Definition: neocore.c:98
aSprite as
Definition: neocore.h:163
paletteInfo * pali
Definition: neocore.h:215
void palette_enable_auto_index()
Enable auto management of palette index.
Definition: neocore.c:721
void joypad_update()
Definition: neocore.c:547
content x & y int coordinate
Definition: neocore.h:84
void image_set_position(Image *image, short x, short y)
Definition: neocore.c:436
void image_physic_hide(Image_Physic *image_physic)
Hide Image_Physic & disable physic.
Definition: neocore.c:500
void scroller_set_position(Scroller *s, short x, short y)
Definition: neocore.c:767
BYTE set_palette_index(BYTE index)
Definition: neocore.c:752
WORD shrunk_forge(BYTE xc, BYTE yc)
Definition: neocore.c:807
Definition: neocore.h:77
Flash flash
Definition: neocore.h:178
void animated_sprite_physic_show(Animated_Sprite_Physic *animated_sprite_physic)
show a Animated_Sprite_Physic
Definition: neocore.c:216
void image_display(Image *image, short x, short y)
Definition: neocore.c:416
int shrunk_centroid_get_translated_x(short centerPosX, WORD tileWidth, BYTE shrunkX)
Definition: neocore.c:830
void palette_disable_auto_index()
Disable auto management of palette index.
Definition: neocore.c:720
void shrunk_addr(WORD addr, WORD shrunk_value)
Definition: neocore.c:803
short heightOffset
Definition: neocore.h:127
void image_physic_init(Image_Physic *image_physic, pictureInfo *pi, paletteInfo *pali, short box_witdh, short box_height, short box_width_offset, short box_height_offset)
Definition: neocore.c:472
void gpu_init()
Definition: neocore.c:362
short x
Definition: neocore.h:95
void animated_sprite_set_animation(Animated_Sprite *animated_sprite, WORD anim)
Definition: neocore.c:144
Animated_Sprite encapsulation with Box.
Definition: neocore.h:188
Vec2short p2
Definition: neocore.h:121
Definition: neocore.h:77
void scroller_move(Scroller *s, short x, short y)
Definition: neocore.c:791
void logger_dword(char *label, DWORD value)
Definition: neocore.c:614
void logger_short(char *label, short value)
Definition: neocore.c:623
WORD get_sprite_index_from_picture(pictureInfo *pi)
Definition: neocore.c:374
void animated_sprite_show(Animated_Sprite *animated_sprite)
Definition: neocore.c:154
void animated_sprite_physic_hide(Animated_Sprite_Physic *animated_sprite_physic)
hide a Animated_Sprite_Physic
Definition: neocore.c:211
Vec2short p0
Definition: neocore.h:119
void joypad_update_edge()
Definition: neocore.c:551
void animated_sprite_hide(Animated_Sprite *animated_sprite)
Definition: neocore.c:148
void image_physic_show(Image_Physic *image_physic)
Show Image_Physic & enable physic.
Definition: neocore.c:505
BYTE x
Definition: neocore.h:105
BOOL enabled
Definition: neocore.h:154
void image_physic_set_position(Image_Physic *image_physic, short x, short y)
Definition: neocore.c:495
paletteInfo * pali
Definition: neocore.h:165
void logger_pictureInfo(char *label, pictureInfo *pi)
Definition: neocore.c:703
void joypad_debug()
Definition: neocore.c:534
void logger_word(char *label, WORD value)
Definition: neocore.c:596
scrollerInfo * si
Definition: neocore.h:214
DATLib scroller structure encapsulation.
Definition: neocore.h:212
char get_sin(WORD index)
Definition: neocore.c:396
void logger_set_position(WORD _x, WORD _y)
Definition: neocore.c:581
void logger_animated_sprite(char *label, Animated_Sprite *animated_sprite)
Definition: neocore.c:650
paletteInfo * pali
Definition: neocore.h:177
int shrunk_centroid_get_translated_y(short centerPosY, WORD tileHeight, BYTE shrunkY)
Definition: neocore.c:836
void clear_vram()
Definition: neocore.c:335
BOOL physic_enabled
Definition: neocore.h:204
DATLib aSprite structure encapsulation.
Definition: neocore.h:162
void image_physic_display(Image_Physic *image_physic, short x, short y)
Definition: neocore.c:485
void vec2byte_init(Vec2byte *vec, BYTE x, BYTE y)
init a Vec2byte structure
Definition: neocore.c:737
WORD get_sprite_index_from_sprite(spriteInfo *si)
Definition: neocore.c:380
void logger_spriteInfo(char *label, spriteInfo *si)
Definition: neocore.c:668
short widthOffset
Definition: neocore.h:126
Vec2short p3
Definition: neocore.h:122