Add support world drawing

This commit is contained in:
2017-11-09 21:43:59 -06:00
parent 539aa1e7eb
commit 2edee450aa
22 changed files with 232 additions and 61 deletions

View File

@@ -11,24 +11,42 @@
namespace nostalgia {
namespace world {
Zone::Zone(common::Bounds bnds) {
using namespace common;
using namespace core;
const int Zone::FIELDS = 1;
const int Region::FIELDS = 0;
Zone::Zone(Context *ctx, Bounds bnds, InodeId_t tileSheet) {
const auto size = bnds.width * bnds.height;
m_tiles = new TileDef[size];
m_tiles = new Tile[size];
m_bounds = bnds;
core::loadTileSheet(ctx, tileSheet);
}
void Zone::draw(core::Context *ctx) {
void Zone::draw(Context *ctx) {
for (int x = 0; x < m_bounds.width; x++) {
for (int y = 0; y < m_bounds.height; y++) {
auto t = tile(x, y);
core::setTile(ctx, 0, x * 2, y * 2, t->bgTile);
core::setTile(ctx, 0, x * 2 + 1, y * 2, t->bgTile + 1);
core::setTile(ctx, 0, x * 2 + 1, y * 2 + 1, t->bgTile + 2);
core::setTile(ctx, 0, x * 2, y * 2 + 1, t->bgTile + 3);
}
}
}
size_t Zone::size() {
return sizeof(Zone) + m_bounds.width * m_bounds.height * sizeof(TileDef);
return sizeof(Zone) + m_bounds.width * m_bounds.height * sizeof(Tile);
}
TileDef *Zone::tile(int row, int column) {
return &m_tiles[row * m_bounds.width + column];
Tile *Zone::tile(int x, int y) {
return &m_tiles[x * m_bounds.width + y];
}
void Zone::setTile(int row, int column, TileDef *td) {
m_tiles[row * m_bounds.width + column] = *td;
void Zone::setTile(int x, int y, Tile *td) {
m_tiles[x * m_bounds.width + y] = *td;
}
}

View File

@@ -8,7 +8,7 @@
#pragma once
#include <ox/std/types.hpp>
#include <ox/mc/mc.hpp>
#include <nostalgia/common/common.hpp>
#include <nostalgia/core/core.hpp>
@@ -16,56 +16,94 @@
namespace nostalgia {
namespace world {
struct TileDef {
uint16_t bgTile;
struct Tile {
uint8_t bgTile = 0;
uint8_t type = 0;
void *occupant = nullptr;
};
template<typename T>
ox::Error ioOp(T *io, TileDef *obj) {
ox::Error ioOpRead(T *io, Tile *obj) {
ox::Error err = 0;
io->setFields(1);
io->setFields(2);
err |= io->op("bgTile", &obj->bgTile);
err |= io->op("type", &obj->type);
return err;
}
struct RegionDef {
uint32_t tileSheetInodes[20];
};
struct Zone {
struct ZoneDef {
int32_t width = 0;
int32_t height = 0;
};
template<typename T>
friend ox::Error ioOpRead(T*, Zone*);
class Zone {
template<typename T>
friend ox::Error ioOpWrite(T*, Zone*);
private:
protected:
static const int FIELDS;
common::Bounds m_bounds;
TileDef *m_tiles = nullptr;
Tile *m_tiles = nullptr;
public:
Zone(common::Bounds bnds);
Zone(core::Context *ctx, common::Bounds bnds, core::InodeId_t tileSheet);
void draw(core::Context *ctx);
size_t size();
TileDef *tile(int row, int column);
Tile *tile(int x, int y);
void setTile(int row, int column, TileDef *td);
void setTile(int x, int y, Tile *td);
};
class Region {
template<typename T>
ox::Error ioOpRead(T *io, Zone *obj) {
ox::Error err = 0;
io->setFields(Zone::FIELDS);
err |= io->op("bounds", &obj->m_bounds);
return err;
}
private:
Zone *m_zones;
template<typename T>
ox::Error ioOpWrite(T *io, Zone *obj) {
ox::Error err = 0;
io->setFields(Zone::FIELDS);
err |= io->op("bounds", &obj->m_bounds);
return err;
}
struct Region {
template<typename T>
friend ox::Error ioOpRead(T*, Region*);
template<typename T>
friend ox::Error ioOpWrite(T*, Region*);
protected:
static const int FIELDS;
Zone *m_zones = nullptr;
public:
};
template<typename T>
ox::Error ioOpRead(T *io, Region *obj) {
ox::Error err = 0;
io->setFields(Region::FIELDS);
return err;
}
template<typename T>
ox::Error ioOpWrite(T *io, Region *obj) {
ox::Error err = 0;
io->setFields(Region::FIELDS);
return err;
}
}
}