pokeemerald/include/util.h

22 lines
781 B
C
Raw Normal View History

2017-09-10 23:05:23 +02:00
#ifndef GUARD_UTIL_H
#define GUARD_UTIL_H
#include "sprite.h"
2017-09-13 12:58:57 +02:00
extern const u8 gMiscBlank_Gfx[]; // unused in Emerald
2017-09-10 23:05:23 +02:00
extern const u32 gBitTable[];
u8 CreateInvisibleSpriteWithCallback(void (*)(struct Sprite *));
void StoreWordInTwoHalfwords(u16 *, u32);
void LoadWordFromTwoHalfwords(u16 *, u32 *);
2017-09-13 12:58:57 +02:00
int CountTrailingZeroBits(u32 value);
u16 CalcCRC16(const u8 *data, s32 length);
u16 CalcCRC16WithTable(const u8 *data, u32 length);
u32 CalcByteArraySum(const u8 *data, u32 length);
2018-10-14 14:43:19 +02:00
void BlendPalette(u16 palOffset, u16 numEntries, u8 coeff, u16 blendColor);
2018-12-27 09:05:09 +01:00
void DoBgAffineSet(struct BgAffineDstData *dest, u32 texX, u32 texY, s16 scrX, s16 scrY, s16 sx, s16 sy, u16 alpha);
2018-12-25 00:10:36 +01:00
void CopySpriteTiles(u8 shape, u8 size, u8 *tiles, u16 *tilemap, u8 *output);
2017-09-10 23:05:23 +02:00
#endif // GUARD_UTIL_H