mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
7dbd1770ec
* initial name changes * hud_element function names * missing player data fields * entity cleanup * missed a few things + starting action states * some world partner cleanup * idle/walk/hammer + peach cooking stuff * clean Co-authored-by: HailSanta <Hail2Santa@gmail.com> Co-authored-by: Ethan Roseman <ethteck@gmail.com>
107 lines
2.7 KiB
C
107 lines
2.7 KiB
C
#ifndef _MACROS_H_
|
|
#define _MACROS_H_
|
|
|
|
#include "types.h"
|
|
#include "include_asm.h"
|
|
|
|
#ifndef M2CTX
|
|
#define BSS __attribute__ ((section (".bss")))
|
|
#define TRANSPARENT_UNION __attribute__ ((__transparent_union__))
|
|
#else
|
|
#define BSS static
|
|
#define TRANSPARENT_UNION
|
|
#endif
|
|
|
|
#define ALIGN16(val) (((val) + 0xF) & ~0xF)
|
|
|
|
#define A(sym) NS(AREA, sym)
|
|
#define N(sym) NS(NAMESPACE, sym)
|
|
|
|
#define ARRAY_COUNT(arr) (s32)(sizeof(arr) / sizeof(arr[0]))
|
|
|
|
#define PHYSICAL_TO_VIRTUAL(addr) (void*)((u32)(addr) + 0x80000000)
|
|
#define VIRTUAL_TO_PHYSICAL(addr) (u32)((u8*)(addr) - 0x80000000)
|
|
|
|
#ifdef DEBUG
|
|
#define ASSERT(condition) \
|
|
if (!(condition)) { \
|
|
func_80025F44("Assertion failed: " #condition, __FILE__, __LINE__); \
|
|
while (TRUE) {} \
|
|
}
|
|
#define PANIC() \
|
|
func_80025F44("Panic!", __FILE__, __LINE__); \
|
|
while (TRUE) {}
|
|
#else
|
|
#define ASSERT(condition) if (!(condition)) { while (TRUE) {} }
|
|
#define PANIC() while (TRUE) {}
|
|
#endif
|
|
|
|
#define BADGE_MENU_PAGE(index) (&gPauseBadgesPages[index])
|
|
#define ITEM_MENU_PAGE(index) (&gPauseItemsPages[index])
|
|
|
|
#define MENU_PANEL_SELECTED_GRID_DATA(panel) \
|
|
(panel)->gridData[(panel)->page * (panel)->numCols * (panel)->numRows + \
|
|
(panel)->numCols * (panel)->row + \
|
|
(panel)->col]
|
|
|
|
#define MAX_MAPVARS 16
|
|
#define MAX_MAPFLAGS 3
|
|
|
|
#define MAX_ANIMATED_MODELS 16
|
|
#define MAX_ANIMATED_MESHES 16
|
|
#define MAX_ENTITY_MODELS 256
|
|
#define MAX_MODELS 256
|
|
#define MAX_MODEL_TRANSFORM_GROUPS 4
|
|
#define MAX_SCRIPTS 128
|
|
#define MAX_NPCS 64
|
|
#define MAX_TRIGGERS 64
|
|
#define MAX_SHADOWS 60
|
|
#define MAX_ENTITIES 30
|
|
#define MAX_DYNAMIC_ENTITIES 16
|
|
#define MAX_TEX_PANNERS 16
|
|
#define MAX_ITEM_ENTITIES 256
|
|
|
|
#define SCREEN_WIDTH 320
|
|
#define SCREEN_HEIGHT 240
|
|
|
|
// Alternative to libultra's M_PI: non-float version; more digits cause issues
|
|
#define PI 3.141592f
|
|
#define PI_D 3.141592
|
|
#define TAU 6.28318f
|
|
#define PI_S 3.14159f // Shorter PI
|
|
|
|
#define SPRITE_WORLD_SCALE 0.71428573f
|
|
|
|
#define BATTLE_ENTITY_ID_MASK 0x800
|
|
|
|
#define COLLISION_WITH_NPC_BIT 0x2000
|
|
#define COLLISION_WITH_ENTITY_BIT 0x4000
|
|
#define COLLISION_IGNORE_ENTITIES 0x40000
|
|
#define COLLISION_ONLY_ENTITIES 0x100000
|
|
|
|
#define PACK_FILL_COLOR(r, g, b, a) (GPACK_RGBA5551(r, g, b, a) << 0x10) | GPACK_RGBA5551(r, g, b, a)
|
|
|
|
#define SQ(x) (x*x)
|
|
#define CUBE(x) (x*x*x)
|
|
#define QUART(x) (x*x*x*x)
|
|
|
|
/// Fixed-point short literal
|
|
#define F16(f) (s16)(f * 327.67f)
|
|
|
|
/// X.10 fixed-point literal
|
|
#define X10(f) (s32)(f * 1024.0f)
|
|
|
|
#define _NS(x, y) x ## _ ## y
|
|
#define NS(x, y) _NS(x, y)
|
|
|
|
#define ASCII_TO_U32(a, b, c, d) ((u32)((a << 24) | (b << 16) | (c << 8) | (d << 0)))
|
|
|
|
#define SPRITE_PIXEL_SCALE (5.0 / 7.0)
|
|
|
|
#ifdef PERMUTER
|
|
#undef SCRIPT
|
|
#define SCRIPT(...) {}
|
|
#endif
|
|
|
|
#endif
|