mkxp-freebird/src/table.cpp

148 lines
3.0 KiB
C++
Raw Normal View History

2013-09-01 14:27:21 +00:00
/*
** table.cpp
**
** This file is part of mkxp.
**
** Copyright (C) 2013 Jonas Kulla <Nyocurio@gmail.com>
**
** mkxp is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 2 of the License, or
** (at your option) any later version.
**
** mkxp is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with mkxp. If not, see <http://www.gnu.org/licenses/>.
*/
#include "table.h"
#include <string.h>
2013-12-08 12:19:22 +00:00
#include <algorithm>
2013-09-01 14:27:21 +00:00
#include "serial-util.h"
#include "exception.h"
#include "util.h"
2013-09-01 14:27:21 +00:00
/* Init normally */
Table::Table(int x, int y /*= 1*/, int z /*= 1*/)
: m_x(x), m_y(y), m_z(z),
data(x*y*z)
{}
2013-09-01 14:27:21 +00:00
Table::Table(const Table &other)
: m_x(other.m_x), m_y(other.m_y), m_z(other.m_z),
data(other.data)
{}
2013-09-01 14:27:21 +00:00
int16_t Table::get(int x, int y, int z) const
{
return data[m_x*m_y*z + m_x*y + x];
}
void Table::set(int16_t value, int x, int y, int z)
{
2013-09-04 15:01:51 +00:00
if (x < 0 || x >= m_x
|| y < 0 || y >= m_y
|| z < 0 || z >= m_z)
{
return;
}
2013-09-01 14:27:21 +00:00
data[m_x*m_y*z + m_x*y + x] = value;
modified();
}
void Table::resize(int x, int y, int z)
{
if (x == m_x && y == m_y && z == m_z)
return;
std::vector<int16_t> newData(x*y*z);
for (int k = 0; k < std::min(z, m_z); ++k)
for (int j = 0; j < std::min(y, m_y); ++j)
for (int i = 0; i < std::min(x, m_x); ++i)
newData[x*y*k + x*j + i] = at(i, j, k);
data.swap(newData);
2013-09-01 14:27:21 +00:00
m_x = x;
m_y = y;
m_z = z;
return;
}
void Table::resize(int x, int y)
{
resize(x, y, m_z);
2013-09-01 14:27:21 +00:00
}
void Table::resize(int x)
{
resize(x, m_y, m_z);
2013-09-01 14:27:21 +00:00
}
/* Serializable */
int Table::serialSize() const
{
/* header + data */
return 20 + (m_x * m_y * m_z) * 2;
}
void Table::serialize(char *buffer) const
{
char *buff_p = buffer;
/* Table dimensions: we don't care
* about them but RMXP needs them */
int dim = 1;
int size = m_x * m_y * m_z;
if (m_y > 1)
dim = 2;
if (m_z > 1)
dim = 3;
write_int32(&buff_p, dim);
2013-09-01 14:27:21 +00:00
write_int32(&buff_p, m_x);
write_int32(&buff_p, m_y);
write_int32(&buff_p, m_z);
write_int32(&buff_p, size);
2013-09-01 14:27:21 +00:00
memcpy(buff_p, dataPtr(data), sizeof(int16_t)*size);
2013-09-01 14:27:21 +00:00
}
Table *Table::deserialize(const char *data, int len)
{
if (len < 20)
throw Exception(Exception::RGSSError, "Marshal: Table: bad file format");
uint idx = 0;
read_int32(data, idx);
int x = read_int32(data, idx);
int y = read_int32(data, idx);
int z = read_int32(data, idx);
int size = read_int32(data, idx);
if (size != x*y*z)
throw Exception(Exception::RGSSError, "Marshal: Table: bad file format");
if (len != 20 + x*y*z*2)
throw Exception(Exception::RGSSError, "Marshal: Table: bad file format");
Table *t = new Table(x, y, z);
memcpy(dataPtr(t->data), &data[idx], sizeof(int16_t)*size);
2013-09-01 14:27:21 +00:00
return t;
}