2022-03-23 15:38:29 +00:00
|
|
|
|
/// Shinki's 32×32 ball bullets
|
|
|
|
|
/// ---------------------------
|
|
|
|
|
|
2020-02-28 21:40:34 +00:00
|
|
|
|
#define B6BALL_COUNT 63
|
|
|
|
|
#define B6BALL_W 32
|
|
|
|
|
#define B6BALL_H 32
|
|
|
|
|
|
2022-03-23 15:38:29 +00:00
|
|
|
|
enum b6ball_flag_t {
|
|
|
|
|
B6BF_FREE = 0,
|
|
|
|
|
B6BF_CLOUD = 1,
|
|
|
|
|
B6BF_ALIVE = 2,
|
|
|
|
|
B6BF_DECAY = 3,
|
|
|
|
|
|
|
|
|
|
_b6ball_flag_t_FORCE_UINT8 = 0xFF
|
|
|
|
|
};
|
|
|
|
|
|
2020-02-28 21:40:34 +00:00
|
|
|
|
typedef struct {
|
2022-03-23 15:38:29 +00:00
|
|
|
|
b6ball_flag_t flag;
|
|
|
|
|
unsigned char angle; // unused
|
2021-06-30 14:30:06 +00:00
|
|
|
|
PlayfieldMotion pos;
|
2022-03-24 22:09:23 +00:00
|
|
|
|
unsigned int age; // unused and broken, because it's never reset
|
2020-02-28 21:40:34 +00:00
|
|
|
|
Subpixel cloud_radius;
|
|
|
|
|
int patnum_tiny;
|
|
|
|
|
int decay_frames;
|
|
|
|
|
int16_t unused;
|
2022-03-23 15:38:29 +00:00
|
|
|
|
SubpixelLength8 speed; // unused
|
2020-02-28 21:40:34 +00:00
|
|
|
|
int8_t padding;
|
|
|
|
|
} b6ball_t;
|
|
|
|
|
|
|
|
|
|
#define b6ball_template (reinterpret_cast<b6ball_t &>(custom_entities[0]))
|
|
|
|
|
#define b6balls (reinterpret_cast<b6ball_t *>(&custom_entities[1]))
|
|
|
|
|
|
2022-03-23 15:38:29 +00:00
|
|
|
|
// Spawns a new ball bullet according to the [b6ball_template].
|
|
|
|
|
void near b6balls_add();
|
|
|
|
|
|
2022-03-24 22:09:23 +00:00
|
|
|
|
void near b6balls_update();
|