neocore
Data Structures | Macros | Typedefs | Enumerations | Functions
neocore.h File Reference
#include <DATlib.h>
#include <math.h>

Go to the source code of this file.

Data Structures

struct  Vec2int
 content x & y int coordinate More...
 
struct  Vec2short
 content x & y short coordinate More...
 
struct  Vec2byte
 content x & y byte coordinate More...
 
struct  Box
 collider definition More...
 
struct  Flash
 
struct  Animated_Sprite
 DATLib aSprite structure encapsulation. More...
 
struct  Image
 DATLib picture structure encapsulation. More...
 
struct  Animated_Sprite_Physic
 Animated_Sprite encapsulation with Box. More...
 
struct  Image_Physic
 Image encapsulation with Box. More...
 
struct  Scroller
 DATLib scroller structure encapsulation. More...
 

Macros

#define NEOCORE_INIT
 
#define GPU_INIT   gpu_init();
 
#define __ALIGN1__   __attribute__ ((aligned (1)))
 
#define __ALIGN2__   __attribute__ ((aligned (2)))
 
#define __ALIGN4__   __attribute__ ((aligned (4)))
 
#define __ALIGN64__   __attribute__ ((aligned (64)))
 
#define __ALIGN128__   __attribute__ ((aligned (128)))
 
#define MULT2   << 1
 
#define MULT4   << 2
 
#define MULT8   << 3
 
#define MULT16   << 4
 
#define MULT32   << 5
 
#define MULT64   << 6
 
#define DIV2   >> 1
 
#define DIV4   >> 2
 
#define DIV8   >> 3
 
#define DIV16   >> 4
 
#define DIV32   >> 5
 
#define DIV64   >> 6
 
#define Y_OFFSCREEN   240
 
#define X   0
 
#define Y   1
 
#define SHRUNK_TABLE_PROP_SIZE   0x2fe
 
#define JOYPAD   BYTE p1, ps;
 
#define JOYPAD_READ   p1 = volMEMBYTE(P1_CURRENT); ps = volMEMBYTE(PS_CURRENT);
 
#define JOYPAD_READ_EDGE   p1 = volMEMBYTE(P1_EDGE); ps = volMEMBYTE(PS_EDGE);
 
#define JOYPAD_IS_UP   p1&JOY_UP
 
#define JOYPAD_IS_DOWN   p1&JOY_DOWN
 
#define JOYPAD_IS_LEFT   p1&JOY_LEFT
 
#define JOYPAD_IS_RIGHT   p1&JOY_RIGHT
 
#define JOYPAD_IS_START   ps&P1_START
 
#define JOYPAD_IS_A   p1&JOY_A
 
#define JOYPAD_IS_B   p1&JOY_B
 
#define JOYPAD_IS_C   p1&JOY_C
 
#define JOYPAD_IS_D   p1&JOY_D
 
#define LOGGER_ON
 
#define LOGGER_X_INIT   1
 
#define LOGGER_Y_INIT   2
 
#define BOXCOPY(bFrom, bTo)   memcpy(bTo, bFrom, sizeof(Box))
 
#define FIX(value)   value * 65536
 
#define RAND(value)   rand() % value
 
#define SHRUNK_EXTRACT_X(value)   value >> 8
 
#define SHRUNK_EXTRACT_Y(value)   (BYTE)value
 
#define animated_sprite_move(animated_sprite, x_offset, y_offset)   aSpriteMove(animated_sprite.as, x_offset, y_offset)
 
#define animated_sprite_set_position(animated_sprite, x, y)   aSpriteSetPos(animated_sprite.as, x, y)
 
#define animated_sprite_animate(animated_sprite)   aSpriteAnimate(animated_sprite.as)
 refresh animation frame More...
 
#define image_move(image, x_offset, y_offset)   pictureMove(image.pic, x_offset, y_offset)
 
#define WAIT_VBL   waitVBlank();
 

Typedefs

typedef struct Vec2int Vec2int
 
typedef struct Vec2short Vec2short
 
typedef struct Vec2byte Vec2byte
 
typedef struct Box Box
 
typedef struct Flash Flash
 
typedef struct Animated_Sprite Animated_Sprite
 
typedef struct Image Image
 
typedef struct Animated_Sprite_Physic Animated_Sprite_Physic
 
typedef struct Image_Physic Image_Physic
 
typedef struct Scroller Scroller
 

Enumerations

enum  direction {
  NONE, UP, DOWN, LEFT,
  RIGHT
}
 

Functions

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)
 
void animated_sprite_init (Animated_Sprite *animated_sprite, spriteInfo *si, paletteInfo *pali)
 
void animated_sprite_display (Animated_Sprite *animated_sprite, short x, short y, WORD anim)
 
void animated_sprite_hide (Animated_Sprite *animated_sprite)
 
void animated_sprite_show (Animated_Sprite *animated_sprite)
 
void animated_sprite_set_animation (Animated_Sprite *animated_sprite, WORD anim)
 
BOOL animated_sprite_flash (Animated_Sprite *animated_sprite)
 refresh flash More...
 
void animated_sprite_physic_display (Animated_Sprite_Physic *animated_sprite_physic, short x, short y, WORD anim)
 
void animated_sprite_physic_set_position (Animated_Sprite_Physic *animated_sprite_physic, short x, short y)
 
void animated_sprite_physic_move (Animated_Sprite_Physic *animated_sprite_physic, short x_offset, short y_offset)
 
void animated_sprite_physic_shrunk (Animated_Sprite_Physic *animated_sprite_physic, WORD shrunk_value)
 
void animated_sprite_physic_hide (Animated_Sprite_Physic *animated_sprite_physic)
 hide a Animated_Sprite_Physic More...
 
void animated_sprite_physic_show (Animated_Sprite_Physic *animated_sprite_physic)
 show a Animated_Sprite_Physic More...
 
void animated_sprite_physic_flash (Animated_Sprite_Physic *animated_sprite_physic)
 refresh a Animated_Sprite_Physic flash More...
 
BYTE boxes_collide (Box *b, Box *boxes[], BYTE box_max)
 check if a box is colliding with a box list More...
 
BOOL box_collide (Box *b1, Box *b2)
 check if two box is colliding More...
 
void box_init (Box *b, short width, short height, short widthOffset, short heightOffset)
 
void box_update (Box *b, short x, short y)
 refresh Box position More...
 
void box_shrunk (Box *b, Box *bOrigin, WORD shrunkValue)
 
void box_resize (Box *Box, short edge)
 
void clear_vram ()
 
void fix_print_neocore (int x, int y, char *label)
 
void flash_init (Flash *flash, short frequency, short lengh)
 
void gpu_init ()
 
WORD get_sprite_index ()
 
WORD get_sprite_index_from_picture (pictureInfo *pi)
 
WORD get_sprite_index_from_sprite (spriteInfo *si)
 
BYTE get_palette_index ()
 
WORD get_shrunk_proportional_table (WORD index)
 
char get_sin (WORD index)
 
BOOL is_visible (Flash *flash)
 
void image_init (Image *image, pictureInfo *pi, paletteInfo *pali)
 
void image_display (Image *image, short x, short y)
 
void image_set_position (Image *image, short x, short y)
 
void image_hide (Image *image)
 hide Image More...
 
void image_show (Image *image)
 show Image More...
 
void image_is_visible (Image *image)
 
BOOL image_flash (Image *image)
 
void image_shrunk_centroid (Image *image, short center_x, short center_y, WORD shrunk_value)
 
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)
 
void image_physic_display (Image_Physic *image_physic, short x, short y)
 
void image_physic_move (Image_Physic *image_physic, short x_offset, short y_offset)
 
void image_physic_set_position (Image_Physic *image_physic, short x, short y)
 
void image_physic_hide (Image_Physic *image_physic)
 Hide Image_Physic & disable physic. More...
 
void image_physic_show (Image_Physic *image_physic)
 Show Image_Physic & enable physic. More...
 
void image_physic_flash (Image_Physic *image_physic)
 
void image_physic_shrunk (Image_Physic *image_physic, WORD shrunk_value)
 
void joypad_update ()
 
void joypad_update_edge ()
 
BOOL joypad_is_up ()
 
BOOL joypad_is_down ()
 
BOOL joypad_is_left ()
 
BOOL joypad_is_right ()
 
BOOL joypad_is_start ()
 
BOOL joypad_is_a ()
 
BOOL joypad_is_b ()
 
BOOL joypad_is_c ()
 
BOOL joypad_is_d ()
 
void joypad_debug ()
 
void logger_init ()
 
void logger_set_position (WORD _x, WORD _y)
 
WORD logger_info (char *txt)
 
void logger_word (char *label, WORD value)
 
void logger_int (char *label, int value)
 
void logger_dword (char *label, DWORD value)
 
void logger_short (char *label, short value)
 
void logger_byte (char *label, BYTE value)
 
void logger_bool (char *label, BOOL value)
 
void logger_animated_sprite (char *label, Animated_Sprite *animated_sprite)
 
void logger_spriteInfo (char *label, spriteInfo *si)
 
void logger_box (char *label, Box *b)
 
void logger_pictureInfo (char *label, pictureInfo *pi)
 
void palette_disable_auto_index ()
 Disable auto management of palette index. More...
 
void palette_enable_auto_index ()
 Enable auto management of palette index. More...
 
void mask_update (short x, short y, Vec2short vec[], Vec2short offset[], BYTE vector_max)
 
void vec2int_init (Vec2int *vec, int x, int y)
 init a Vec2int structure More...
 
void vec2short_init (Vec2short *vec, short x, short y)
 init a Vec2short structure More...
 
void vec2byte_init (Vec2byte *vec, BYTE x, BYTE y)
 init a Vec2byte structure More...
 
BOOL vectors_collide (Box *box, Vec2short vec[], BYTE vector_max)
 
BOOL vector_is_left (short x, short y, short v1x, short v1y, short v2x, short v2y)
 
void set_sprite_index (WORD index)
 
BYTE set_palette_index (BYTE index)
 
void scroller_init (Scroller *s, scrollerInfo *si, paletteInfo *pali)
 
void scroller_display (Scroller *s, short x, short y)
 
void scroller_move (Scroller *s, short x, short y)
 
void scroller_set_position (Scroller *s, short x, short y)
 
int shrunk_centroid_get_translated_x (short centerPosX, WORD tileWidth, BYTE shrunkX)
 
int shrunk_centroid_get_translated_y (short centerPosY, WORD tileHeight, BYTE shrunkY)
 
void shrunk (WORD base_sprite, WORD max_width, WORD value)
 
WORD shrunk_forge (BYTE xc, BYTE yc)
 
void shrunk_addr (WORD addr, WORD shrunk_value)
 
WORD shrunk_range (WORD addr_start, WORD addr_end, WORD shrunk_value)
 
DWORD wait_vbl_max (WORD nb)
 

Macro Definition Documentation

◆ __ALIGN128__

#define __ALIGN128__   __attribute__ ((aligned (128)))

Definition at line 31 of file neocore.h.

◆ __ALIGN1__

#define __ALIGN1__   __attribute__ ((aligned (1)))

Definition at line 27 of file neocore.h.

◆ __ALIGN2__

#define __ALIGN2__   __attribute__ ((aligned (2)))

Definition at line 28 of file neocore.h.

◆ __ALIGN4__

#define __ALIGN4__   __attribute__ ((aligned (4)))

Definition at line 29 of file neocore.h.

◆ __ALIGN64__

#define __ALIGN64__   __attribute__ ((aligned (64)))

Definition at line 30 of file neocore.h.

◆ animated_sprite_animate

#define animated_sprite_animate (   animated_sprite)    aSpriteAnimate(animated_sprite.as)

refresh animation frame

Parameters
Animated_Sprite*Animated_Sprite pointer

Definition at line 311 of file neocore.h.

◆ animated_sprite_move

#define animated_sprite_move (   animated_sprite,
  x_offset,
  y_offset 
)    aSpriteMove(animated_sprite.as, x_offset, y_offset)
Parameters
Animated_Sprite*Animated_Sprite pointer
xoffset
yoffset

Definition at line 282 of file neocore.h.

◆ animated_sprite_set_position

#define animated_sprite_set_position (   animated_sprite,
  x,
 
)    aSpriteSetPos(animated_sprite.as, x, y)
Parameters
Animated_Sprite*Animated_Sprite pointer
x
y

Definition at line 289 of file neocore.h.

◆ BOXCOPY

#define BOXCOPY (   bFrom,
  bTo 
)    memcpy(bTo, bFrom, sizeof(Box))

Definition at line 69 of file neocore.h.

◆ DIV16

#define DIV16   >> 4

Definition at line 42 of file neocore.h.

◆ DIV2

#define DIV2   >> 1

Definition at line 39 of file neocore.h.

◆ DIV32

#define DIV32   >> 5

Definition at line 43 of file neocore.h.

◆ DIV4

#define DIV4   >> 2

Definition at line 40 of file neocore.h.

◆ DIV64

#define DIV64   >> 6

Definition at line 44 of file neocore.h.

◆ DIV8

#define DIV8   >> 3

Definition at line 41 of file neocore.h.

◆ FIX

#define FIX (   value)    value * 65536

Definition at line 71 of file neocore.h.

◆ GPU_INIT

#define GPU_INIT   gpu_init();

Definition at line 25 of file neocore.h.

◆ image_move

#define image_move (   image,
  x_offset,
  y_offset 
)    pictureMove(image.pic, x_offset, y_offset)
Parameters
Image*Image pointer
xoffset
yoffset

Definition at line 509 of file neocore.h.

◆ JOYPAD

#define JOYPAD   BYTE p1, ps;

Definition at line 52 of file neocore.h.

◆ JOYPAD_IS_A

#define JOYPAD_IS_A   p1&JOY_A

Definition at line 60 of file neocore.h.

◆ JOYPAD_IS_B

#define JOYPAD_IS_B   p1&JOY_B

Definition at line 61 of file neocore.h.

◆ JOYPAD_IS_C

#define JOYPAD_IS_C   p1&JOY_C

Definition at line 62 of file neocore.h.

◆ JOYPAD_IS_D

#define JOYPAD_IS_D   p1&JOY_D

Definition at line 63 of file neocore.h.

◆ JOYPAD_IS_DOWN

#define JOYPAD_IS_DOWN   p1&JOY_DOWN

Definition at line 56 of file neocore.h.

◆ JOYPAD_IS_LEFT

#define JOYPAD_IS_LEFT   p1&JOY_LEFT

Definition at line 57 of file neocore.h.

◆ JOYPAD_IS_RIGHT

#define JOYPAD_IS_RIGHT   p1&JOY_RIGHT

Definition at line 58 of file neocore.h.

◆ JOYPAD_IS_START

#define JOYPAD_IS_START   ps&P1_START

Definition at line 59 of file neocore.h.

◆ JOYPAD_IS_UP

#define JOYPAD_IS_UP   p1&JOY_UP

Definition at line 55 of file neocore.h.

◆ JOYPAD_READ

#define JOYPAD_READ   p1 = volMEMBYTE(P1_CURRENT); ps = volMEMBYTE(PS_CURRENT);

Definition at line 53 of file neocore.h.

◆ JOYPAD_READ_EDGE

#define JOYPAD_READ_EDGE   p1 = volMEMBYTE(P1_EDGE); ps = volMEMBYTE(PS_EDGE);

Definition at line 54 of file neocore.h.

◆ LOGGER_ON

#define LOGGER_ON

Definition at line 65 of file neocore.h.

◆ LOGGER_X_INIT

#define LOGGER_X_INIT   1

Definition at line 66 of file neocore.h.

◆ LOGGER_Y_INIT

#define LOGGER_Y_INIT   2

Definition at line 67 of file neocore.h.

◆ MULT16

#define MULT16   << 4

Definition at line 36 of file neocore.h.

◆ MULT2

#define MULT2   << 1

Definition at line 33 of file neocore.h.

◆ MULT32

#define MULT32   << 5

Definition at line 37 of file neocore.h.

◆ MULT4

#define MULT4   << 2

Definition at line 34 of file neocore.h.

◆ MULT64

#define MULT64   << 6

Definition at line 38 of file neocore.h.

◆ MULT8

#define MULT8   << 3

Definition at line 35 of file neocore.h.

◆ NEOCORE_INIT

#define NEOCORE_INIT
Value:
typedef struct bkp_ram_info { \
WORD debug_dips; \
BYTE stuff[254]; \
} bkp_ram_info; \
bkp_ram_info bkp_data;

Definition at line 18 of file neocore.h.

◆ RAND

#define RAND (   value)    rand() % value

Definition at line 72 of file neocore.h.

◆ SHRUNK_EXTRACT_X

#define SHRUNK_EXTRACT_X (   value)    value >> 8

Definition at line 74 of file neocore.h.

◆ SHRUNK_EXTRACT_Y

#define SHRUNK_EXTRACT_Y (   value)    (BYTE)value

Definition at line 75 of file neocore.h.

◆ SHRUNK_TABLE_PROP_SIZE

#define SHRUNK_TABLE_PROP_SIZE   0x2fe

Definition at line 50 of file neocore.h.

◆ WAIT_VBL

#define WAIT_VBL   waitVBlank();

Definition at line 837 of file neocore.h.

◆ X

#define X   0

Definition at line 47 of file neocore.h.

◆ Y

#define Y   1

Definition at line 48 of file neocore.h.

◆ Y_OFFSCREEN

#define Y_OFFSCREEN   240

Definition at line 46 of file neocore.h.

Typedef Documentation

◆ Animated_Sprite

Definition at line 161 of file neocore.h.

◆ Animated_Sprite_Physic

Definition at line 187 of file neocore.h.

◆ Box

typedef struct Box Box

Definition at line 117 of file neocore.h.

◆ Flash

typedef struct Flash Flash

Definition at line 149 of file neocore.h.

◆ Image

typedef struct Image Image

Definition at line 173 of file neocore.h.

◆ Image_Physic

typedef struct Image_Physic Image_Physic

Definition at line 200 of file neocore.h.

◆ Scroller

typedef struct Scroller Scroller

Definition at line 211 of file neocore.h.

◆ Vec2byte

typedef struct Vec2byte Vec2byte

Definition at line 103 of file neocore.h.

◆ Vec2int

typedef struct Vec2int Vec2int

Definition at line 83 of file neocore.h.

◆ Vec2short

typedef struct Vec2short Vec2short

Definition at line 93 of file neocore.h.

Enumeration Type Documentation

◆ direction

enum direction
Enumerator
NONE 
UP 
DOWN 
LEFT 
RIGHT 

Definition at line 77 of file neocore.h.

77 { NONE, UP, DOWN, LEFT, RIGHT };
Definition: neocore.h:77
Definition: neocore.h:77
Definition: neocore.h:77
Definition: neocore.h:77
Definition: neocore.h:77

Function Documentation

◆ animated_sprite_display()

void animated_sprite_display ( Animated_Sprite animated_sprite,
short  x,
short  y,
WORD  anim 
)
Parameters
Animated_Sprite*Animated_Sprite pointer
xposition
yposition
animDATLib macro

Definition at line 104 of file neocore.c.

104  {
105  BOOL palette_auto_index_state = palette_auto_index;
107  aSpriteInit(
108  &animated_sprite->as,
109  animated_sprite->si,
110  get_sprite_index_from_sprite(animated_sprite->si),
111  get_palette_index(animated_sprite->pali),
112  x,
113  y,
114  anim,
115  FLIP_NONE
116  );
117  if (palette_auto_index_state) palette_enable_auto_index();
118  palJobPut(
119  get_palette_index(animated_sprite->pali),
120  animated_sprite->pali->palCount,
121  animated_sprite->pali->data
122  );
123  aSpriteSetAnim(&animated_sprite->as, anim);
124 }
spriteInfo * si
Definition: neocore.h:164
void palette_enable_auto_index()
Enable auto management of palette index.
Definition: neocore.c:721
aSprite as
Definition: neocore.h:163
BYTE get_palette_index(paletteInfo *pali)
Definition: neocore.c:386
void palette_disable_auto_index()
Disable auto management of palette index.
Definition: neocore.c:720
paletteInfo * pali
Definition: neocore.h:165
WORD get_sprite_index_from_sprite(spriteInfo *si)
Definition: neocore.c:380

◆ animated_sprite_flash()

BOOL animated_sprite_flash ( Animated_Sprite animated_sprite)

refresh flash

Parameters
Animated_Sprite*Animated_Sprite pointer
Returns
BOOL

Definition at line 126 of file neocore.c.

126  {
127  BOOL rt = true;
128  if (animated_sprite->flash.frequency != 0 && animated_sprite->flash.lengh != 0) {
129  if (DAT_frameCounter % animated_sprite->flash.frequency == 0) {
130  if (is_visible(&animated_sprite->flash)) {
131  animated_sprite_hide(animated_sprite);
132  rt = false;
133  } else {
134  animated_sprite_show(animated_sprite);
135  rt = true;
136  }
137  animated_sprite->flash.lengh--;
138  if (animated_sprite->flash.lengh == 0) animated_sprite_show(animated_sprite);
139  }
140  }
141  return rt;
142 }
void animated_sprite_show(Animated_Sprite *animated_sprite)
Definition: neocore.c:154
WORD frequency
Definition: neocore.h:151
WORD lengh
Definition: neocore.h:152
BOOL is_visible(Flash *flash)
Definition: neocore.c:403
void animated_sprite_hide(Animated_Sprite *animated_sprite)
Definition: neocore.c:148

◆ animated_sprite_hide()

void animated_sprite_hide ( Animated_Sprite animated_sprite)
Parameters
Animated_Sprite*Animated_Sprite pointer

Definition at line 148 of file neocore.c.

148  {
149  animated_sprite->flash.visible = false;
150  aSpriteHide(&animated_sprite->as);
151  clearSprites(animated_sprite->as.baseSprite, animated_sprite->as.tileWidth);
152 }
BOOL visible
Definition: neocore.h:153
aSprite as
Definition: neocore.h:163

◆ animated_sprite_init()

void animated_sprite_init ( Animated_Sprite animated_sprite,
spriteInfo *  si,
paletteInfo *  pali 
)
Parameters
Animated_Sprite*Animated_Sprite pointer
spriteInfo*spriteInfo pointer to DATLib structure
paletteInfo*paletteInfo pointer to DATLib structure

Definition at line 98 of file neocore.c.

98  {
99  flash_init(&animated_sprite->flash, 0, 0);
100  animated_sprite->si = si;
101  animated_sprite->pali = pali;
102 };
void flash_init(Flash *flash, short frequency, short lengh)
Definition: neocore.c:354
spriteInfo * si
Definition: neocore.h:164
paletteInfo * pali
Definition: neocore.h:165

◆ animated_sprite_physic_display()

void animated_sprite_physic_display ( Animated_Sprite_Physic animated_sprite_physic,
short  x,
short  y,
WORD  anim 
)
Parameters
Animated_Sprite_Physic*Animated_Sprite_Physic pointer
x
y
animDATLib macro

Definition at line 186 of file neocore.c.

186  {
188  &animated_sprite_physic->animated_sprite,
189  x,
190  y,
191  anim
192  );
193  box_update(&animated_sprite_physic->box, x, y);
194 }
Animated_Sprite animated_sprite
Definition: neocore.h:189
void box_update(Box *b, short x, short y)
refresh Box position
Definition: neocore.c:266
void animated_sprite_display(Animated_Sprite *animated_sprite, short x, short y, WORD anim)
Definition: neocore.c:104

◆ animated_sprite_physic_flash()

void animated_sprite_physic_flash ( Animated_Sprite_Physic animated_sprite_physic)

refresh a Animated_Sprite_Physic flash

Parameters
Animated_Sprite_Physic*Animated_Sprite_Physic pointer

Definition at line 221 of file neocore.c.

221  {
222  animated_sprite_physic->physic_enabled = animated_sprite_flash(&animated_sprite_physic->animated_sprite);
223 }
BOOL animated_sprite_flash(Animated_Sprite *animated_sprite)
refresh flash
Definition: neocore.c:126
Animated_Sprite animated_sprite
Definition: neocore.h:189

◆ animated_sprite_physic_hide()

void animated_sprite_physic_hide ( Animated_Sprite_Physic animated_sprite_physic)

hide a Animated_Sprite_Physic

Parameters
Animated_Sprite_Physic*Animated_Sprite_Physic pointer

Definition at line 211 of file neocore.c.

211  {
212  animated_sprite_hide(&animated_sprite_physic->animated_sprite);
213  animated_sprite_physic->physic_enabled = false;
214 }
Animated_Sprite animated_sprite
Definition: neocore.h:189
void animated_sprite_hide(Animated_Sprite *animated_sprite)
Definition: neocore.c:148

◆ animated_sprite_physic_init()

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 
)
Parameters
Animated_Sprite_Physic*Animated_Sprite_Physic pointer
paletteInfo*pointer to DATLib structure
witdhof the physic box
heightof the physic box
widthoffset to reduce physic box
heightoffset to reduce physic box

Definition at line 162 of file neocore.c.

170  {
171  box_init(
172  &animated_sprite_physic->box,
173  box_witdh,
174  box_height,
175  box_width_offset,
176  box_height_offset
177  );
178  animated_sprite_physic->physic_enabled = true;
180  &animated_sprite_physic->animated_sprite,
181  si,
182  pali
183  );
184 }
Animated_Sprite animated_sprite
Definition: neocore.h:189
void box_init(Box *b, short width, short height, short widthOffset, short heightOffset)
Definition: neocore.c:259
JOYPAD void animated_sprite_init(Animated_Sprite *animated_sprite, spriteInfo *si, paletteInfo *pali)
Definition: neocore.c:98

◆ animated_sprite_physic_move()

void animated_sprite_physic_move ( Animated_Sprite_Physic animated_sprite_physic,
short  x_offset,
short  y_offset 
)
Parameters
Animated_Sprite_Physic*Animated_Sprite_Physic pointer
xoffset
yoffset

Definition at line 201 of file neocore.c.

201  {
202  animated_sprite_move(&animated_sprite_physic->animated_sprite, x_offset, y_offset);
203  box_update(&animated_sprite_physic->box, animated_sprite_physic->animated_sprite.as.posX, animated_sprite_physic->animated_sprite.as.posY);
204 }
Animated_Sprite animated_sprite
Definition: neocore.h:189
void box_update(Box *b, short x, short y)
refresh Box position
Definition: neocore.c:266
aSprite as
Definition: neocore.h:163
#define animated_sprite_move(animated_sprite, x_offset, y_offset)
Definition: neocore.h:282

◆ animated_sprite_physic_set_position()

void animated_sprite_physic_set_position ( Animated_Sprite_Physic animated_sprite_physic,
short  x,
short  y 
)
Parameters
Animated_Sprite_Physic*Animated_Sprite_Physic pointer
x
y

Definition at line 196 of file neocore.c.

196  {
197  animated_sprite_set_position(&animated_sprite_physic->animated_sprite, x, y);
198  box_update(&animated_sprite_physic->box, x, y);
199 }
#define animated_sprite_set_position(animated_sprite, x, y)
Definition: neocore.h:289
Animated_Sprite animated_sprite
Definition: neocore.h:189
void box_update(Box *b, short x, short y)
refresh Box position
Definition: neocore.c:266

◆ animated_sprite_physic_show()

void animated_sprite_physic_show ( Animated_Sprite_Physic animated_sprite_physic)

show a Animated_Sprite_Physic

Parameters
Animated_Sprite_Physic*Animated_Sprite_Physic pointer

Definition at line 216 of file neocore.c.

216  {
217  animated_sprite_show(&animated_sprite_physic->animated_sprite);
218  animated_sprite_physic->physic_enabled = true;
219 }
void animated_sprite_show(Animated_Sprite *animated_sprite)
Definition: neocore.c:154
Animated_Sprite animated_sprite
Definition: neocore.h:189

◆ animated_sprite_physic_shrunk()

void animated_sprite_physic_shrunk ( Animated_Sprite_Physic animated_sprite_physic,
WORD  shrunk_value 
)
Parameters
Animated_Sprite_Physic*Animated_Sprite_Physic pointer
shrunkuse shrunk_forge function for make a WORD with width & heigh value

Definition at line 206 of file neocore.c.

206  {
207  shrunk(animated_sprite_physic->animated_sprite.as.baseSprite, animated_sprite_physic->animated_sprite.si->maxWidth, shrunk_value);
208  // todo (minor) - box resize
209 }
spriteInfo * si
Definition: neocore.h:164
Animated_Sprite animated_sprite
Definition: neocore.h:189
aSprite as
Definition: neocore.h:163
void shrunk(WORD base_sprite, WORD max_width, WORD value)
Definition: neocore.c:826

◆ animated_sprite_set_animation()

void animated_sprite_set_animation ( Animated_Sprite animated_sprite,
WORD  anim 
)
Parameters
Animated_Sprite*Animated_Sprite pointer
animDATLib macro

Definition at line 144 of file neocore.c.

144  {
145  aSpriteSetAnim(&animated_sprite->as, anim);
146 }
aSprite as
Definition: neocore.h:163

◆ animated_sprite_show()

void animated_sprite_show ( Animated_Sprite animated_sprite)
Parameters
Animated_Sprite*Animated_Sprite pointer

Definition at line 154 of file neocore.c.

154  {
155  animated_sprite->flash.visible = true;
156  aSpriteShow(&animated_sprite->as);
157 }
BOOL visible
Definition: neocore.h:153
aSprite as
Definition: neocore.h:163

◆ box_collide()

BOOL box_collide ( Box b1,
Box b2 
)

check if two box is colliding

Parameters
Box*box1 pointer
Box*box2 pointer
Returns
BOOL

Definition at line 245 of file neocore.c.

245  { // todo - return a frixion vector
246  if(
247  b1->p1.x >= b2->p0.x
248  &&
249  b1->p0.x <= b2->p1.x
250  &&
251  b1->p3.y >= b2->p0.y
252  &&
253  b1->p0.y <= b2->p3.y
254  ) {
255  return true;
256  } else { return false; }
257 }
Vec2short p1
Definition: neocore.h:120
short y
Definition: neocore.h:96
short x
Definition: neocore.h:95
Vec2short p0
Definition: neocore.h:119
Vec2short p3
Definition: neocore.h:122

◆ box_init()

void box_init ( Box b,
short  width,
short  height,
short  widthOffset,
short  heightOffset 
)
Parameters
Box*Box pointer
width
height
width_offsetwidth Box reduce
height_offsetheight Box reduce

Definition at line 259 of file neocore.c.

259  {
260  b->width = width;
261  b->height = height;
262  b->widthOffset = widthOffset;
263  b->heightOffset = heightOffset;
264 }
short width
Definition: neocore.h:124
short height
Definition: neocore.h:125
short heightOffset
Definition: neocore.h:127
short widthOffset
Definition: neocore.h:126

◆ box_resize()

void box_resize ( Box Box,
short  edge 
)

Definition at line 318 of file neocore.c.

318  {
319  box->p0.x -= edge;
320  box->p0.y -= edge;
321 
322  box->p1.x += edge;
323  box->p1.y -= edge;
324 
325  box->p2.x += edge;
326  box->p2.y += edge;
327 
328  box->p3.x -= edge;
329  box->p3.y += edge;
330 }

◆ box_shrunk()

void box_shrunk ( Box b,
Box bOrigin,
WORD  shrunkValue 
)

Definition at line 283 of file neocore.c.

283  {
284  // todo (minor) - optim.
285  // if i can read the shrunk VRAM value, i can compute the origin box...
286  // todo (minor) - improve precision
287  // todo (minor) - consider box offsets
288  BYTE shrunk_x = SHRUNK_EXTRACT_X(shrunkValue);
289  BYTE pix_step_x = (bOrigin->width DIV16);
290  BYTE trim_x = (((15 - shrunk_x) * pix_step_x) DIV2);
291 
292  int trim_y;
293  FIXED shrunk_y = FIX(SHRUNK_EXTRACT_Y(shrunkValue));
294  FIXED pix_step_y = FIX((float)bOrigin->height / (float)256); // todo (minor) - hmmm !!! float
295  FIXED shrunk_y_multiplicator = fsub(FIX(255), shrunk_y);
296  shrunk_y_multiplicator = fmul(shrunk_y_multiplicator, pix_step_y);
297  trim_y = fixtoi(shrunk_y_multiplicator);
298  trim_y = (trim_y DIV2);
299  trim_y += 1;
300 
301  b->p0.x = bOrigin->p0.x + trim_x - (bOrigin->width DIV2);
302  b->p0.y = bOrigin->p0.y + trim_y - (bOrigin->height DIV2);
303 
304  b->p1.x = bOrigin->p1.x - trim_x - (bOrigin->width DIV2);
305  b->p1.y = bOrigin->p1.y + trim_y - (bOrigin->height DIV2);
306 
307  b->p2.x = bOrigin->p2.x - trim_x - (bOrigin->width DIV2);
308  b->p2.y = bOrigin->p2.y - trim_y - (bOrigin->height DIV2);
309 
310  b->p3.x = bOrigin->p3.x + trim_x - (bOrigin->width DIV2);
311  b->p3.y = bOrigin->p3.y - trim_y - (bOrigin->height DIV2);
312 
313  b->p4.x = b->p0.x + ((b->p1.x - b->p0.x) DIV2);
314  b->p4.y = b->p0.y + ((b->p3.y - b->p0.y) DIV2);
315 }
#define FIX(value)
Definition: neocore.h:71
#define SHRUNK_EXTRACT_X(value)
Definition: neocore.h:74
short width
Definition: neocore.h:124
Vec2short p4
Definition: neocore.h:123
Vec2short p1
Definition: neocore.h:120
#define DIV16
Definition: neocore.h:42
short y
Definition: neocore.h:96
short height
Definition: neocore.h:125
short x
Definition: neocore.h:95
Vec2short p2
Definition: neocore.h:121
Vec2short p0
Definition: neocore.h:119
#define SHRUNK_EXTRACT_Y(value)
Definition: neocore.h:75
#define DIV2
Definition: neocore.h:39
Vec2short p3
Definition: neocore.h:122

◆ box_update()

void box_update ( Box b,
short  x,
short  y 
)

refresh Box position

Parameters
Box*Box pointer
x
y

Definition at line 266 of file neocore.c.

266  {
267  b->p0.x = x + b->widthOffset;
268  b->p0.y = y + b->heightOffset;
269 
270  b->p1.x = b->p0.x + b->width;
271  b->p1.y = b->p0.y;
272 
273  b->p2.x = b->p1.x;
274  b->p2.y = b->p1.y + b->height;
275 
276  b->p3.x = b->p0.x;
277  b->p3.y = b->p2.y;
278 
279  b->p4.x = b->p0.x + ((b->p1.x - b->p0.x) DIV2);
280  b->p4.y = b->p0.y + ((b->p3.y - b->p0.y) DIV2);
281 }
short width
Definition: neocore.h:124
Vec2short p4
Definition: neocore.h:123
Vec2short p1
Definition: neocore.h:120
short y
Definition: neocore.h:96
short height
Definition: neocore.h:125
short heightOffset
Definition: neocore.h:127
short x
Definition: neocore.h:95
Vec2short p2
Definition: neocore.h:121
Vec2short p0
Definition: neocore.h:119
#define DIV2
Definition: neocore.h:39
short widthOffset
Definition: neocore.h:126
Vec2short p3
Definition: neocore.h:122

◆ boxes_collide()

BYTE boxes_collide ( Box b,
Box boxes[],
BYTE  box_max 
)

check if a box is colliding with a box list

Parameters
Box*Box pointer
Box*Box list pointer
box_maxBox quantity
Returns
BYTE the box id collider or 0

Definition at line 228 of file neocore.c.

228  {
229  BYTE rt = false;
230  BYTE i = 0;
231  for (i = 0; i < box_max; i++) {
232  if(
233  b->p1.x >= boxes[i]->p0.x
234  &&
235  b->p0.x <= boxes[i]->p1.x
236  &&
237  b->p3.y >= boxes[i]->p0.y
238  &&
239  b->p0.y <= boxes[i]->p3.y
240  ) { rt = i + 1; }
241  }
242  return rt;
243 }
Vec2short p1
Definition: neocore.h:120
short y
Definition: neocore.h:96
short x
Definition: neocore.h:95
Vec2short p0
Definition: neocore.h:119
Vec2short p3
Definition: neocore.h:122

◆ clear_vram()

void clear_vram ( )
inline

Definition at line 335 of file neocore.c.

335  { // todo (minor) - disable interrupt
336  WORD addr = 0x0000;
337  WORD addr_end = 0x8FFF;
338  for (addr = addr; addr <= addr_end; addr++) {
339  SC234Put(addr, 0);
340  }
341  SCClose();
342  wait_vbl_max(10);
343  SCClose();
344  wait_vbl_max(10);
345 }
DWORD wait_vbl_max(WORD nb)
Definition: neocore.c:845

◆ fix_print_neocore()

void fix_print_neocore ( int  x,
int  y,
char *  label 
)
inline
Parameters
x
y
label

Definition at line 350 of file neocore.c.

350  {
351  fixPrint(x, y, 0, 0, label);
352 }

◆ flash_init()

void flash_init ( Flash flash,
short  frequency,
short  lengh 
)
Parameters
Flash*Flash pointer
frequency
lengh

Definition at line 354 of file neocore.c.

354  {
355  flash->frequency = frequency;
356  flash->lengh = lengh;
357 }
WORD frequency
Definition: neocore.h:151
WORD lengh
Definition: neocore.h:152

◆ get_palette_index()

BYTE get_palette_index ( )
Returns
BYTE current palette_index

◆ get_shrunk_proportional_table()

WORD get_shrunk_proportional_table ( WORD  index)
Parameters
index
Returns
WORD a proportionnal value (shrink x, y) from an index of precalculated table

Definition at line 392 of file neocore.c.

392  {
393  return shrunk_table_prop[index]; // todo (minor) - rename shrunk_proportional_table
394 }

◆ get_sin()

char get_sin ( WORD  index)
Parameters
index

Definition at line 396 of file neocore.c.

396  {
397  return sinTable[index];
398 }

◆ get_sprite_index()

WORD get_sprite_index ( )
Returns
WORD the current sprite_index

Definition at line 372 of file neocore.c.

372 { return sprite_index; }

◆ get_sprite_index_from_picture()

WORD get_sprite_index_from_picture ( pictureInfo *  pi)
Parameters
pictureInfo*pointer to DATLib structure
Returns
WORD the sprite_index after add sprites from pictureInfo

Definition at line 374 of file neocore.c.

374  {
375  WORD rt = sprite_index;
376  if (sprite_auto_index) sprite_index += pi->tileWidth;
377  return rt;
378 }

◆ get_sprite_index_from_sprite()

WORD get_sprite_index_from_sprite ( spriteInfo *  si)
Parameters
spriteInfo*pointer to DATLib structure
Returns
WORD the sprite_index after add sprites from spriteInfo

Definition at line 380 of file neocore.c.

380  {
381  WORD rt = sprite_index;
382  if (sprite_auto_index) sprite_index += si->maxWidth;
383  return rt;
384 }

◆ gpu_init()

void gpu_init ( )
inline

Definition at line 362 of file neocore.c.

362  {
363  backgroundColor(0x7000); // todo (minor) - macro with some colors ...
364  clearFixLayer();
365  initGfx();
366  volMEMWORD(0x400002) = 0xffff; // debug text white
367  LSPCmode = 0x1c00; // autoanim speed
368  sprite_index = 1;
369  palette_index = 16;
370 }

◆ image_display()

void image_display ( Image image,
short  x,
short  y 
)
Parameters
Image*Image pointer
x
y

Definition at line 416 of file neocore.c.

416  {
417  BOOL palette_auto_index_state = palette_auto_index;
419  pictureInit(
420  &image->pic,
421  image->pi,
423  get_palette_index(image->pali),
424  x,
425  y,
426  FLIP_NONE
427  );
428  if (palette_auto_index_state) palette_enable_auto_index();
429  palJobPut(
430  get_palette_index(image->pali),
431  image->pali->palCount,
432  image->pali->data
433  );
434 }
pictureInfo * pi
Definition: neocore.h:176
picture pic
Definition: neocore.h:175
void palette_enable_auto_index()
Enable auto management of palette index.
Definition: neocore.c:721
BYTE get_palette_index(paletteInfo *pali)
Definition: neocore.c:386
void palette_disable_auto_index()
Disable auto management of palette index.
Definition: neocore.c:720
WORD get_sprite_index_from_picture(pictureInfo *pi)
Definition: neocore.c:374
paletteInfo * pali
Definition: neocore.h:177

◆ image_flash()

BOOL image_flash ( Image image)
Parameters
Image*Image pointer

Definition at line 451 of file neocore.c.

451  {
452  BOOL rt = true;
453  if (image->flash.frequency != 0 && image->flash.lengh != 0) {
454  if (DAT_frameCounter % image->flash.frequency == 0) {
455  if (is_visible(&image->flash)) {
456  image_hide(image);
457  rt = false;
458  } else {
459  image_show(image);
460  rt = true;
461  }
462  image->flash.lengh--;
463  if (image->flash.lengh == 0) image_show(image);
464  }
465  }
466  return rt;
467 }
WORD frequency
Definition: neocore.h:151
WORD lengh
Definition: neocore.h:152
BOOL is_visible(Flash *flash)
Definition: neocore.c:403
void image_hide(Image *image)
hide Image
Definition: neocore.c:441
Flash flash
Definition: neocore.h:178
void image_show(Image *image)
show Image
Definition: neocore.c:446

◆ image_hide()

void image_hide ( Image image)

hide Image

Parameters
Image*Image pointer

Definition at line 441 of file neocore.c.

441  {
442  pictureHide(&image->pic);
443  image->flash.visible = false;
444 }
picture pic
Definition: neocore.h:175
BOOL visible
Definition: neocore.h:153
Flash flash
Definition: neocore.h:178

◆ image_init()

void image_init ( Image image,
pictureInfo *  pi,
paletteInfo *  pali 
)
Parameters
Image*Image pointer
pictureInfo*pointer to DATLib structure
paletteInfo*pointer to DATLib structure

Definition at line 410 of file neocore.c.

410  {
411  flash_init(&image->flash, 0, 0);
412  image->pali = pali;
413  image->pi = pi;
414 }
void flash_init(Flash *flash, short frequency, short lengh)
Definition: neocore.c:354
pictureInfo * pi
Definition: neocore.h:176
Flash flash
Definition: neocore.h:178
paletteInfo * pali
Definition: neocore.h:177

◆ image_is_visible()

void image_is_visible ( Image image)
Parameters
Image*Image pointer
Returns
BOOL true if Image is visible or false

◆ image_physic_display()

void image_physic_display ( Image_Physic image_physic,
short  x,
short  y 
)
Parameters
Image_Physic*pointer
x
y

Definition at line 485 of file neocore.c.

485  {
486  image_display(&image_physic->image, x, y);
487  box_update(&image_physic->box, x, y);
488 }
void box_update(Box *b, short x, short y)
refresh Box position
Definition: neocore.c:266
void image_display(Image *image, short x, short y)
Definition: neocore.c:416
Image image
Definition: neocore.h:202

◆ image_physic_flash()

void image_physic_flash ( Image_Physic image_physic)
Parameters
Image_Physic*Pointer

Definition at line 510 of file neocore.c.

510  {
511  image_physic->physic_enabled = image_flash(&image_physic->image);
512 }
Image image
Definition: neocore.h:202
BOOL image_flash(Image *image)
Definition: neocore.c:451
BOOL physic_enabled
Definition: neocore.h:204

◆ image_physic_hide()

void image_physic_hide ( Image_Physic image_physic)

Hide Image_Physic & disable physic.

Parameters
Image_Physic*Pointer

Definition at line 500 of file neocore.c.

500  {
501  image_hide(&image_physic->image);
502  image_physic->physic_enabled = false;
503 }
Image image
Definition: neocore.h:202
void image_hide(Image *image)
hide Image
Definition: neocore.c:441
BOOL physic_enabled
Definition: neocore.h:204

◆ image_physic_init()

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 
)
Parameters
Image_Physic*Image_Physic pointer
pictureInfo*pointer to DATLib structure
paletteInfo*pointer to DATLib structure
widthBox width
heightBox height
width_offsetBox offset reduce
height_offsetBox offset reduce

Definition at line 472 of file neocore.c.

480  {
481  image_init(&image_physic->image, pi, pali);
482  box_init(&image_physic->box, box_witdh, box_height, box_width_offset, box_height_offset);
483 }
void image_init(Image *image, pictureInfo *pi, paletteInfo *pali)
Definition: neocore.c:410
Image image
Definition: neocore.h:202
void box_init(Box *b, short width, short height, short widthOffset, short heightOffset)
Definition: neocore.c:259

◆ image_physic_move()

void image_physic_move ( Image_Physic image_physic,
short  x_offset,
short  y_offset 
)
Parameters
Image_Physic*pointer
xoffset
yoffset

Definition at line 490 of file neocore.c.

490  {
491  image_move(&image_physic->image, x_offset, y_offset);
492  box_update(&image_physic->box, image_physic->image.pic.posX, image_physic->image.pic.posY);
493 }
picture pic
Definition: neocore.h:175
void box_update(Box *b, short x, short y)
refresh Box position
Definition: neocore.c:266
Image image
Definition: neocore.h:202
#define image_move(image, x_offset, y_offset)
Definition: neocore.h:509

◆ image_physic_set_position()

void image_physic_set_position ( Image_Physic image_physic,
short  x,
short  y 
)
Parameters
Image_Physic*pointer
x
y

Definition at line 495 of file neocore.c.

495  {
496  image_set_position(&image_physic->image, x, y);
497  box_update(&image_physic->box, x, y);
498 }
void box_update(Box *b, short x, short y)
refresh Box position
Definition: neocore.c:266
Image image
Definition: neocore.h:202
void image_set_position(Image *image, short x, short y)
Definition: neocore.c:436

◆ image_physic_show()

void image_physic_show ( Image_Physic image_physic)

Show Image_Physic & enable physic.

Parameters
Image_PhysicPointer

Definition at line 505 of file neocore.c.

505  {
506  image_show(&image_physic->image);
507  image_physic->physic_enabled = true;
508 }
Image image
Definition: neocore.h:202
void image_show(Image *image)
show Image
Definition: neocore.c:446
BOOL physic_enabled
Definition: neocore.h:204

◆ image_physic_shrunk()

void image_physic_shrunk ( Image_Physic image_physic,
WORD  shrunk_value 
)
Parameters
Image_Physic*pointer
shrunkFactor

Definition at line 514 of file neocore.c.

514  {
515  shrunk(image_physic->image.pic.baseSprite, image_physic->image.pic.info->tileWidth, shrunk_value);
516  // todo (minor) - shrunk box
517 }
picture pic
Definition: neocore.h:175
Image image
Definition: neocore.h:202
void shrunk(WORD base_sprite, WORD max_width, WORD value)
Definition: neocore.c:826

◆ image_set_position()

void image_set_position ( Image image,
short  x,
short  y 
)
Parameters
Image*Image pointer
x
y

Definition at line 436 of file neocore.c.

436  {
437  pictureSetPos(&image->pic, x, y);
438 }
picture pic
Definition: neocore.h:175

◆ image_show()

void image_show ( Image image)

show Image

Parameters
Image*Image pointer

Definition at line 446 of file neocore.c.

446  {
447  pictureShow(&image->pic);
448  image->flash.visible = true;
449 }
picture pic
Definition: neocore.h:175
BOOL visible
Definition: neocore.h:153
Flash flash
Definition: neocore.h:178

◆ image_shrunk_centroid()

void image_shrunk_centroid ( Image image,
short  center_x,
short  center_y,
WORD  shrunk_value 
)
Parameters
Image*Image pointer
xcenter position
ycenter position
shrunkuse shrunk_forge function for make a WORD with width & heigh value

Definition at line 519 of file neocore.c.

519  {
520  shrunk(image->pic.baseSprite, image->pic.info->tileWidth, shrunk_value);
522  image,
523  shrunk_centroid_get_translated_x(center_x, image->pi->tileWidth, SHRUNK_EXTRACT_X(shrunk_value)),
524  shrunk_centroid_get_translated_y(center_y, image->pi->tileHeight, SHRUNK_EXTRACT_Y(shrunk_value))
525  );
526 }
#define SHRUNK_EXTRACT_X(value)
Definition: neocore.h:74
int shrunk_centroid_get_translated_x(short centerPosX, WORD tileWidth, BYTE shrunkX)
Definition: neocore.c:830
pictureInfo * pi
Definition: neocore.h:176
picture pic
Definition: neocore.h:175
int shrunk_centroid_get_translated_y(short centerPosY, WORD tileHeight, BYTE shrunkY)
Definition: neocore.c:836
void image_set_position(Image *image, short x, short y)
Definition: neocore.c:436
#define SHRUNK_EXTRACT_Y(value)
Definition: neocore.h:75
void shrunk(WORD base_sprite, WORD max_width, WORD value)
Definition: neocore.c:826

◆ is_visible()

BOOL is_visible ( Flash flash)
Parameters
Flash*Flash pointer
Returns
BOOL

Definition at line 403 of file neocore.c.

403  {
404  return flash->visible;
405 }
BOOL visible
Definition: neocore.h:153

◆ joypad_debug()

void joypad_debug ( )
inline

Definition at line 534 of file neocore.c.

534  {
536  if (joypad_is_start()) { fix_print_neocore(10, 11, "JOYPAD START"); }
537  if (joypad_is_up()) { fix_print_neocore(10, 11, "JOYPAD UP "); }
538  if (joypad_is_down()) { fix_print_neocore(10, 11, "JOYPAD DOWN "); }
539  if (joypad_is_left()) { fix_print_neocore(10, 11, "JOYPAD LEFT "); }
540  if (joypad_is_right()) { fix_print_neocore(10, 11, "JOYPAD RIGHT"); }
541  if (joypad_is_a()) { fix_print_neocore(10, 11, "JOYPAD A "); }
542  if (joypad_is_b()) { fix_print_neocore(10, 11, "JOYPAD B "); }
543  if (joypad_is_c()) { fix_print_neocore(10, 11, "JOYPAD C "); }
544  if (joypad_is_d()) { fix_print_neocore(10, 11, "JOYPAD D "); }
545 }
void fix_print_neocore(int x, int y, char *label)
Definition: neocore.c:350
BOOL joypad_is_b()
Definition: neocore.c:561
BOOL joypad_is_right()
Definition: neocore.c:558
BOOL joypad_is_c()
Definition: neocore.c:562
BOOL joypad_is_left()
Definition: neocore.c:557
BOOL joypad_is_start()
Definition: neocore.c:559
BOOL joypad_is_d()
Definition: neocore.c:563
BOOL joypad_is_up()
Definition: neocore.c:555
#define JOYPAD_READ
Definition: neocore.h:53
BOOL joypad_is_a()
Definition: neocore.c:560
BOOL joypad_is_down()
Definition: neocore.c:556

◆ joypad_is_a()

BOOL joypad_is_a ( )

Definition at line 560 of file neocore.c.

560 { return (JOYPAD_IS_A) ? (true) : (false); }
#define JOYPAD_IS_A
Definition: neocore.h:60

◆ joypad_is_b()

BOOL joypad_is_b ( )

Definition at line 561 of file neocore.c.

561 { return (JOYPAD_IS_B) ? (true) : (false); }
#define JOYPAD_IS_B
Definition: neocore.h:61

◆ joypad_is_c()

BOOL joypad_is_c ( )

Definition at line 562 of file neocore.c.

562 { return (JOYPAD_IS_C) ? (true) : (false); }
#define JOYPAD_IS_C
Definition: neocore.h:62

◆ joypad_is_d()

BOOL joypad_is_d ( )

Definition at line 563 of file neocore.c.

563 { return (JOYPAD_IS_D) ? (true) : (false); }
#define JOYPAD_IS_D
Definition: neocore.h:63

◆ joypad_is_down()

BOOL joypad_is_down ( )

Definition at line 556 of file neocore.c.

556 { return (JOYPAD_IS_DOWN) ? (true) : (false); }
#define JOYPAD_IS_DOWN
Definition: neocore.h:56

◆ joypad_is_left()

BOOL joypad_is_left ( )

Definition at line 557 of file neocore.c.

557 { return (JOYPAD_IS_LEFT) ? (true) : (false); }
#define JOYPAD_IS_LEFT
Definition: neocore.h:57

◆ joypad_is_right()

BOOL joypad_is_right ( )

Definition at line 558 of file neocore.c.

558 { return (JOYPAD_IS_RIGHT) ? (true) : (false); }
#define JOYPAD_IS_RIGHT
Definition: neocore.h:58

◆ joypad_is_start()

BOOL joypad_is_start ( )

Definition at line 559 of file neocore.c.

559 { return (JOYPAD_IS_START) ? (true) : (false); }
#define JOYPAD_IS_START
Definition: neocore.h:59

◆ joypad_is_up()

BOOL joypad_is_up ( )

Definition at line 555 of file neocore.c.

555 { return (JOYPAD_IS_UP) ? (true) : (false); }
#define JOYPAD_IS_UP
Definition: neocore.h:55

◆ joypad_update()

void joypad_update ( )

Definition at line 547 of file neocore.c.

547  {
549 }
#define JOYPAD_READ
Definition: neocore.h:53

◆ joypad_update_edge()

void joypad_update_edge ( )

Definition at line 551 of file neocore.c.

551  {
553 }
#define JOYPAD_READ_EDGE
Definition: neocore.h:54

◆ logger_animated_sprite()

void logger_animated_sprite ( char *  label,
Animated_Sprite animated_sprite 
)
inline

Definition at line 650 of file neocore.c.

650  {
651  #ifdef LOGGER_ON
652  logger_info(label);
653  logger_word("BASESPRITE : " , animated_sprite->as.baseSprite);
654  logger_word("BASEPALETTE : ", animated_sprite->as.basePalette);
655  logger_short("POSX : ", animated_sprite->as.posX);
656  logger_short("POSY : ", animated_sprite->as.posY);
657  logger_short("CURRENTSTEPNUM : ", animated_sprite->as.currentStepNum);
658  logger_short("MAXSTEP : ", animated_sprite->as.maxStep);
659  logger_dword("COUNTER : ", animated_sprite->as.counter);
660  logger_word("REPEATS : ", animated_sprite->as.repeats);
661  logger_word("CURRENTFLIP : ", animated_sprite->as.currentFlip);
662  logger_word("TILEWIDTH : ", animated_sprite->as.tileWidth);
663  logger_word("ANIMID : ", animated_sprite->as.animID);
664  logger_word("FLAGS", animated_sprite->as.flags);
665  #endif
666 }
void logger_dword(char *label, DWORD value)
Definition: neocore.c:614
void logger_short(char *label, short value)
Definition: neocore.c:623
aSprite as
Definition: neocore.h:163
void logger_word(char *label, WORD value)
Definition: neocore.c:596
WORD logger_info(char *label)
Definition: neocore.c:588

◆ logger_bool()

void logger_bool ( char *  label,
BOOL  value 
)
inline

Definition at line 641 of file neocore.c.

641  {
642  #ifdef LOGGER_ON
643  WORD yc = y;
644  x = x_default + logger_info(label) + 2;
645  fixPrintf(x , yc, 0, 0, "%01d", value);
646  x = x_default;
647  #endif
648 }
WORD logger_info(char *label)
Definition: neocore.c:588

◆ logger_box()

void logger_box ( char *  label,
Box b 
)
inline

Definition at line 677 of file neocore.c.

677  {
678  #ifdef LOGGER_ON
679  logger_info(label);
680  logger_short("P0X", (short)b->p0.x);
681  logger_short("P0Y", (short)b->p0.y);
682  logger_info("");
683  logger_short("P1X", (short)b->p1.x);
684  logger_short("P1Y", (short)b->p1.y);
685  logger_info("");
686  logger_short("P2X", (short)b->p2.x);
687  logger_short("P2Y", (short)b->p2.y);
688  logger_info("");
689  logger_short("P3X", (short)b->p3.x);
690  logger_short("P3Y", (short)b->p3.y);
691  logger_info("");
692  logger_short("P4X", (short)b->p4.x);
693  logger_short("P4Y", (short)b->p4.y);
694  logger_info("");
695  logger_short("WIDTH ", b->width);
696  logger_short("HEIGHT ", b->height);
697  logger_info("");
698  logger_short("WIDTH OFFSET ", b->widthOffset);
699  logger_short("HEIGHT OFFSET ", b->heightOffset);
700  #endif
701 }
short width
Definition: neocore.h:124
Vec2short p4
Definition: neocore.h:123
Vec2short p1
Definition: neocore.h:120
void logger_short(char *label, short value)
Definition: neocore.c:623
short y
Definition: neocore.h:96
short height
Definition: neocore.h:125
short heightOffset
Definition: neocore.h:127
short x
Definition: neocore.h:95
Vec2short p2
Definition: neocore.h:121
Vec2short p0
Definition: neocore.h:119
WORD logger_info(char *label)
Definition: neocore.c:588
short widthOffset
Definition: neocore.h:126
Vec2short p3
Definition: neocore.h:122

◆ logger_byte()

void logger_byte ( char *  label,
BYTE  value 
)
inline

Definition at line 632 of file neocore.c.

632  {
633  #ifdef LOGGER_ON
634  WORD yc = y;
635  x = x_default + logger_info(label) + 2;
636  fixPrintf(x , yc, 0, 0, "%02d", value);
637  x = x_default;
638  #endif
639 }
WORD logger_info(char *label)
Definition: neocore.c:588

◆ logger_dword()

void logger_dword ( char *  label,
DWORD  value 
)
inline

Definition at line 614 of file neocore.c.

614  {
615  #ifdef LOGGER_ON
616  WORD yc = y;
617  x = x_default + logger_info(label) + 2;
618  fixPrintf(x , yc, 0, 0, "%08d", value);
619  x = x_default;
620  #endif
621 }
WORD logger_info(char *label)
Definition: neocore.c:588

◆ logger_info()

WORD logger_info ( char *  txt)
inline

Definition at line 588 of file neocore.c.

588  {
589  #ifdef LOGGER_ON
590  fixPrintf(x, y , 0, 0 , label);
591  autoInc();
592  return countChar(label);
593  #endif
594 }

◆ logger_init()

void logger_init ( )

Definition at line 571 of file neocore.c.

571  {
572  #ifdef LOGGER_ON
573  x = LOGGER_X_INIT;
574  y = LOGGER_Y_INIT;
575  x_default = LOGGER_X_INIT;
576  y_default = LOGGER_Y_INIT;
577  clearFixLayer();
578  #endif
579 }
#define LOGGER_Y_INIT
Definition: neocore.h:67
#define LOGGER_X_INIT
Definition: neocore.h:66

◆ logger_int()

void logger_int ( char *  label,
int  value 
)
inline

Definition at line 605 of file neocore.c.

605  {
606  #ifdef LOGGER_ON
607  WORD yc = y;
608  x = x_default + logger_info(label) + 2;
609  fixPrintf(x , yc, 0, 0, "%08d", value);
610  x = x_default;
611  #endif
612 }
WORD logger_info(char *label)
Definition: neocore.c:588

◆ logger_pictureInfo()

void logger_pictureInfo ( char *  label,
pictureInfo *  pi 
)
inline

Definition at line 703 of file neocore.c.

703  {
704  #ifdef LOGGER_ON
705  logger_info(label);
706  logger_word("COLSIZE : ", (WORD)pi->colSize);
707  logger_word("UNUSED HEIGHT : ", (WORD)pi->unused__height);
708  logger_word("TILEWIDTH : ", (WORD)pi->tileWidth);
709  logger_word("TILEHEIGHT : ", (WORD)pi->tileHeight);
710  #endif
711 }
void logger_word(char *label, WORD value)
Definition: neocore.c:596
WORD logger_info(char *label)
Definition: neocore.c:588

◆ logger_set_position()

void logger_set_position ( WORD  _x,
WORD  _y 
)

Definition at line 581 of file neocore.c.

581  {
582  x = _x;
583  y = _y;
584  x_default = x;
585  y_default = y;
586 }

◆ logger_short()

void logger_short ( char *  label,
short  value 
)
inline

Definition at line 623 of file neocore.c.

623  {
624  #ifdef LOGGER_ON
625  WORD yc = y;
626  x = x_default + logger_info(label) + 2;
627  fixPrintf(x , yc, 0, 0, "%02d", value);
628  x = x_default;
629  #endif
630 }
WORD logger_info(char *label)
Definition: neocore.c:588

◆ logger_spriteInfo()

void logger_spriteInfo ( char *  label,
spriteInfo *  si 
)
inline

Definition at line 668 of file neocore.c.

668  {
669  #ifdef LOGGER_ON
670  logger_info(label);
671  logger_word("PALCOUNT : ", si->palCount);
672  logger_word("FRAMECOUNT : ", si->frameCount);
673  logger_word("MAXWIDTH : ", si->maxWidth);
674  #endif
675 }
void logger_word(char *label, WORD value)
Definition: neocore.c:596
WORD logger_info(char *label)
Definition: neocore.c:588

◆ logger_word()

void logger_word ( char *  label,
WORD  value 
)
inline

Definition at line 596 of file neocore.c.

596  {
597  #ifdef LOGGER_ON
598  WORD yc = y;
599  x = x_default + logger_info(label) + 2;
600  fixPrintf(x , yc, 0, 0, "%04d", value);
601  x = x_default;
602  #endif
603 }
WORD logger_info(char *label)
Definition: neocore.c:588

◆ mask_update()

void mask_update ( short  x,
short  y,
Vec2short  vec[],
Vec2short  offset[],
BYTE  vector_max 
)

Definition at line 951 of file neocore.c.

951  {
952  BYTE i = 0;
953  for (i = 0; i < vector_max; i++) {
954  vec[i].x = x + offset[i].x;
955  vec[i].y = y + offset[i].y;
956  }
957 }
short y
Definition: neocore.h:96
short x
Definition: neocore.h:95

◆ palette_disable_auto_index()

void palette_disable_auto_index ( )

Disable auto management of palette index.

Definition at line 720 of file neocore.c.

720 { palette_auto_index = false; }

◆ palette_enable_auto_index()

void palette_enable_auto_index ( )

Enable auto management of palette index.

Definition at line 721 of file neocore.c.

721 { palette_auto_index = true; }

◆ scroller_display()

void scroller_display ( Scroller s,
short  x,
short  y 
)
Parameters
Scroller*Pointer
x
y

Definition at line 771 of file neocore.c.

771  {
772  BOOL palette_auto_index_state = palette_auto_index;
774  scrollerInit(
775  &s->s,
776  s->si,
779  x,
780  y
781  );
782  sprite_index += 21;
783  if (palette_auto_index_state) palette_enable_auto_index();
784  palJobPut(
786  s->pali->palCount,
787  s->pali->data
788  );
789 }
scroller s
Definition: neocore.h:213
void palette_enable_auto_index()
Enable auto management of palette index.
Definition: neocore.c:721
paletteInfo * pali
Definition: neocore.h:215
BYTE get_palette_index(paletteInfo *pali)
Definition: neocore.c:386
WORD get_sprite_index()
Definition: neocore.c:372
void palette_disable_auto_index()
Disable auto management of palette index.
Definition: neocore.c:720
scrollerInfo * si
Definition: neocore.h:214

◆ scroller_init()

void scroller_init ( Scroller s,
scrollerInfo *  si,
paletteInfo *  pali 
)
Parameters
Scroller*Pointer
scrollerInfo*Pointer to DATLib structure
paletteInfo*Pointer to DATLib structure

Definition at line 795 of file neocore.c.

795  {
796  s->si = si;
797  s->pali = pali;
798 }
paletteInfo * pali
Definition: neocore.h:215
scrollerInfo * si
Definition: neocore.h:214

◆ scroller_move()

void scroller_move ( Scroller s,
short  x,
short  y 
)
Parameters
Scroller*Pointer
xoffset
yoffset

Definition at line 791 of file neocore.c.

791  {
792  scrollerSetPos(&s->s, s->s.scrlPosX + x, s->s.scrlPosY + y);
793 }
scroller s
Definition: neocore.h:213

◆ scroller_set_position()

void scroller_set_position ( Scroller s,
short  x,
short  y 
)
Parameters
Scroller*Pointer
x
y

Definition at line 767 of file neocore.c.

767  {
768  scrollerSetPos(&s->s, x, y);
769 }
scroller s
Definition: neocore.h:213

◆ set_palette_index()

BYTE set_palette_index ( BYTE  index)
Parameters
index

Definition at line 752 of file neocore.c.

752  {
753  palette_index = index;
754  return palette_index;
755 }

◆ set_sprite_index()

void set_sprite_index ( WORD  index)
Parameters
index

◆ shrunk()

void shrunk ( WORD  base_sprite,
WORD  max_width,
WORD  value 
)
Parameters
indexBase sprite index
widthShrunk width factor
value

Definition at line 826 of file neocore.c.

826  {
827  shrunk_range(0x8000 + base_sprite, 0x8000 + base_sprite + max_width, value);
828 }
WORD shrunk_range(WORD addr_start, WORD addr_end, WORD shrunk_value)
Definition: neocore.c:817

◆ shrunk_addr()

void shrunk_addr ( WORD  addr,
WORD  shrunk_value 
)
inline
Parameters
addr
valueShrunk factor

Definition at line 803 of file neocore.c.

803  {
804  SC234Put(addr, shrunk_value);
805 }

◆ shrunk_centroid_get_translated_x()

int shrunk_centroid_get_translated_x ( short  centerPosX,
WORD  tileWidth,
BYTE  shrunkX 
)
Parameters
xCenter position
yCenter position
widthTile width
shrunkXShrunk width factor
Returns
int

Definition at line 830 of file neocore.c.

830  {
831  FIXED newX = FIX(centerPosX);
832  newX -= (shrunkX + 1) * FIX((tileWidth MULT8) / 0x10);
833  return fixtoi(newX);
834 }
#define FIX(value)
Definition: neocore.h:71
#define MULT8
Definition: neocore.h:35

◆ shrunk_centroid_get_translated_y()

int shrunk_centroid_get_translated_y ( short  centerPosY,
WORD  tileHeight,
BYTE  shrunkY 
)
Parameters
xCenter position
yCenter position
widthTile width
shrunkYShrunk height factor
Returns
int

Definition at line 836 of file neocore.c.

836  {
837  FIXED newY = FIX(centerPosY);
838  newY -= shrunkY * FIX((tileHeight MULT8) / 0xFF);
839  return fixtoi(newY);
840 }
#define FIX(value)
Definition: neocore.h:71
#define MULT8
Definition: neocore.h:35

◆ shrunk_forge()

WORD shrunk_forge ( BYTE  xc,
BYTE  yc 
)
Parameters
xShrunk width factor
yShrunk height factor
Returns
WORD

Definition at line 807 of file neocore.c.

807  { // todo (minor) - xcF, ycFF
808  //F FF - x (hor) , y (vert)
809  // vertical shrinking 8 bit
810  // horizontal shrinking 4 bit
811  WORD value = 0;
812  value = xc << 8;
813  value += yc;
814  return value;
815 }

◆ shrunk_range()

WORD shrunk_range ( WORD  addr_start,
WORD  addr_end,
WORD  shrunk_value 
)
Parameters
addrAddress start
addrAdress end
valueShrunk factor

Definition at line 817 of file neocore.c.

817  {
818  WORD cur_addr = addr_start;
819  while (cur_addr < addr_end) {
820  SC234Put(cur_addr, shrunk_value);
821  cur_addr++;
822  }
823  return addr_end;
824 }

◆ vec2byte_init()

void vec2byte_init ( Vec2byte vec,
BYTE  x,
BYTE  y 
)

init a Vec2byte structure

Parameters
Vect2byte*Pointer
x
y

Definition at line 737 of file neocore.c.

737 { vec->x = x; vec->y = y; }
BYTE y
Definition: neocore.h:106
BYTE x
Definition: neocore.h:105

◆ vec2int_init()

void vec2int_init ( Vec2int vec,
int  x,
int  y 
)

init a Vec2int structure

Parameters
Vect2int*Pointer
x
y

Definition at line 735 of file neocore.c.

735 { vec->x = x; vec->y = y; }
int x
Definition: neocore.h:85
int y
Definition: neocore.h:86

◆ vec2short_init()

void vec2short_init ( Vec2short vec,
short  x,
short  y 
)

init a Vec2short structure

Parameters
Vect2short*Pointer
x
y

Definition at line 736 of file neocore.c.

736 { vec->x = x; vec->y = y; }
short y
Definition: neocore.h:96
short x
Definition: neocore.h:95

◆ vector_is_left()

BOOL vector_is_left ( short  x,
short  y,
short  v1x,
short  v1y,
short  v2x,
short  v2y 
)
Parameters
xCoord 1
yCoord 1
xCoord 2
yCoord 2
xCoord 3
yCoord 3

Definition at line 726 of file neocore.c.

726  {
727  BOOL rt = false;
728  short vectorD[2] = {v2x - v1x, v2y - v1y};
729  short vectorT[2] = {x - v1x, y -v1y};
730  short d = vectorD[X] * vectorT[Y] - vectorD[Y] * vectorT[X];
731  (d > 0) ? (rt = false) : (rt = true);
732  return rt;
733 }
#define X
Definition: neocore.h:47
#define Y
Definition: neocore.h:48

◆ vectors_collide()

BOOL vectors_collide ( Box box,
Vec2short  vec[],
BYTE  vector_max 
)
Parameters
Box*Pointer
Vec2short[]List
maxQuantity list

Definition at line 739 of file neocore.c.

739  {
740  BOOL p0 = false, p1 = false, p2 = false, p3 = false, p4 = false;
741  p0 = collide_point(box->p0.x, box->p0.y, vec, vector_max);
742  p1 = collide_point(box->p1.x, box->p1.y, vec, vector_max);
743  p2 = collide_point(box->p2.x, box->p2.y, vec, vector_max);
744  p3 = collide_point(box->p3.x, box->p3.y, vec, vector_max);
745  p4 = collide_point(box->p4.x, box->p4.y, vec, vector_max);
746  return (p0 || p1 || p2 || p3 || p4);
747 }
Vec2short p4
Definition: neocore.h:123
Vec2short p1
Definition: neocore.h:120
short y
Definition: neocore.h:96
short x
Definition: neocore.h:95
Vec2short p2
Definition: neocore.h:121
Vec2short p0
Definition: neocore.h:119
Vec2short p3
Definition: neocore.h:122

◆ wait_vbl_max()

DWORD wait_vbl_max ( WORD  nb)
inline
Parameters
vblNumber of frames to wait

Definition at line 845 of file neocore.c.

845  {
846  WORD i = 0;
847  for (i = 0; i <= nb; i++) waitVBlank();
848  return DAT_frameCounter;
849 }