#ifndef YAZE_APP_GFX_SNES_TILE_H #define YAZE_APP_GFX_SNES_TILE_H #include #include #include "app/core/constants.h" namespace yaze { namespace app { namespace gfx { struct tile8 { unsigned int id; char data[64]; unsigned int palette_id; }; using tile8 = struct tile8; // vhopppcc cccccccc // [0, 1] // [2, 3] class TileInfo { public: ushort id_; ushort over_; ushort vertical_mirror_; ushort horizontal_mirror_; uchar palette_; TileInfo() = default; TileInfo(ushort id, uchar palette, ushort v, ushort h, ushort o) : id_(id), over_(o), vertical_mirror_(v), horizontal_mirror_(h), palette_(palette) {} }; TileInfo GetTilesInfo(ushort tile); class Tile32 { public: ushort tile0_; ushort tile1_; ushort tile2_; ushort tile3_; Tile32(ushort t0, ushort t1, ushort t2, ushort t3) : tile0_(t0), tile1_(t1), tile2_(t2), tile3_(t3) {} }; class Tile16 { public: TileInfo tile0_; TileInfo tile1_; TileInfo tile2_; TileInfo tile3_; std::vector tiles_info; Tile16(TileInfo t0, TileInfo t1, TileInfo t2, TileInfo t3) : tile0_(t0), tile1_(t1), tile2_(t2), tile3_(t3) { tiles_info.push_back(tile0_); tiles_info.push_back(tile1_); tiles_info.push_back(tile2_); tiles_info.push_back(tile3_); } }; class OAMTile { public: int x_; int y_; int mx_; int my_; int pal_; ushort tile_; OAMTile() = default; OAMTile(int x, int y, ushort tile, int pal, bool upper = false, int mx = 0, int my = 0) : x_(x), y_(y), mx_(mx), my_(my), pal_(pal) { if (upper) { tile_ = (ushort)(tile + 512); } else { tile_ = (ushort)(tile + 256 + 512); } } }; } // namespace gfx } // namespace app } // namespace yaze #endif // YAZE_APP_GFX_SNES_TILE_H