236 lines
6.3 KiB
C++
Executable file
236 lines
6.3 KiB
C++
Executable file
#ifndef MAP_H
|
|
#define MAP_H
|
|
|
|
#include "tileset.h"
|
|
#include "blockdata.h"
|
|
#include "event.h"
|
|
|
|
#include <QPixmap>
|
|
#include <QObject>
|
|
#include <QDebug>
|
|
#include <QGraphicsPixmapItem>
|
|
#include <math.h>
|
|
|
|
class HistoryItem {
|
|
public:
|
|
Blockdata *metatiles;
|
|
int layoutWidth;
|
|
int layoutHeight;
|
|
HistoryItem(Blockdata *metatiles_, int layoutWidth_, int layoutHeight_) {
|
|
this->metatiles = metatiles_;
|
|
this->layoutWidth = layoutWidth_;
|
|
this->layoutHeight = layoutHeight_;
|
|
}
|
|
~HistoryItem() {
|
|
if (metatiles) delete metatiles;
|
|
}
|
|
};
|
|
|
|
template <typename T>
|
|
class History {
|
|
public:
|
|
History() {
|
|
|
|
}
|
|
T back() {
|
|
if (head > 0) {
|
|
return history.at(--head);
|
|
}
|
|
return NULL;
|
|
}
|
|
T next() {
|
|
if (head + 1 < history.length()) {
|
|
return history.at(++head);
|
|
}
|
|
return NULL;
|
|
}
|
|
void push(T commit) {
|
|
while (head + 1 < history.length()) {
|
|
HistoryItem *item = history.last();
|
|
history.removeLast();
|
|
delete item;
|
|
}
|
|
if (saved > head) {
|
|
saved = -1;
|
|
}
|
|
history.append(commit);
|
|
head++;
|
|
}
|
|
T current() {
|
|
if (head < 0 || history.length() == 0) {
|
|
return NULL;
|
|
}
|
|
return history.at(head);
|
|
}
|
|
void save() {
|
|
saved = head;
|
|
}
|
|
bool isSaved() {
|
|
return saved == head;
|
|
}
|
|
|
|
private:
|
|
QList<T> history;
|
|
int head = -1;
|
|
int saved = -1;
|
|
};
|
|
|
|
class Connection {
|
|
public:
|
|
Connection() {
|
|
}
|
|
public:
|
|
QString direction;
|
|
QString offset;
|
|
QString map_name;
|
|
};
|
|
|
|
class MapLayout {
|
|
public:
|
|
MapLayout() {}
|
|
int index;
|
|
QString name;
|
|
QString label;
|
|
QString width;
|
|
QString height;
|
|
QString border_label;
|
|
QString border_path;
|
|
QString blockdata_label;
|
|
QString blockdata_path;
|
|
QString tileset_primary_label;
|
|
QString tileset_secondary_label;
|
|
Tileset *tileset_primary = nullptr;
|
|
Tileset *tileset_secondary = nullptr;
|
|
Blockdata* blockdata = nullptr;
|
|
QImage border_image;
|
|
QPixmap border_pixmap;
|
|
Blockdata *border = nullptr;
|
|
Blockdata *cached_blockdata = nullptr;
|
|
Blockdata *cached_collision = nullptr;
|
|
Blockdata *cached_border = nullptr;
|
|
bool has_unsaved_changes = false;
|
|
public:
|
|
static QString getNameFromLabel(QString label) {
|
|
// ASSUMPTION: strip off "_Layout" from layout label. Directories in 'data/layouts/' must be well-formed.
|
|
return label.replace(label.lastIndexOf("_Layout"), label.length(), "");
|
|
}
|
|
};
|
|
|
|
class Map : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Map(QObject *parent = nullptr);
|
|
|
|
public:
|
|
QString name;
|
|
QString constantName;
|
|
QString group_num;
|
|
QString layout_label;
|
|
QString events_label;
|
|
QString scripts_label;
|
|
QString connections_label;
|
|
QString song;
|
|
QString layout_id;
|
|
QString location;
|
|
QString requiresFlash;
|
|
QString isFlyable; // TODO: implement this
|
|
QString weather;
|
|
QString type;
|
|
QString unknown;
|
|
QString show_location;
|
|
QString battle_scene;
|
|
MapLayout *layout;
|
|
int scale_exp = 0;
|
|
double scale_base = sqrt(2); // adjust scale factor with this
|
|
|
|
bool isPersistedToFile = true;
|
|
|
|
public:
|
|
void setName(QString mapName);
|
|
static QString mapConstantFromName(QString mapName);
|
|
static QString objectEventsLabelFromName(QString mapName);
|
|
static QString warpEventsLabelFromName(QString mapName);
|
|
static QString coordEventsLabelFromName(QString mapName);
|
|
static QString bgEventsLabelFromName(QString mapName);
|
|
int getWidth();
|
|
int getHeight();
|
|
uint16_t getSelectedBlockIndex(int);
|
|
int getDisplayedBlockIndex(int);
|
|
QPixmap render(bool ignoreCache);
|
|
QPixmap renderMetatiles();
|
|
|
|
QPixmap renderCollision(bool ignoreCache);
|
|
QImage collision_image;
|
|
QPixmap collision_pixmap;
|
|
QImage getCollisionMetatileImage(Block);
|
|
QImage getCollisionMetatileImage(int, int);
|
|
QPixmap renderCollisionMetatiles();
|
|
|
|
void drawSelection(int i, int w, int selectionWidth, int selectionHeight, QPainter *painter, int gridWidth);
|
|
|
|
bool blockChanged(int, Blockdata*);
|
|
void cacheBlockdata();
|
|
void cacheCollision();
|
|
QImage image;
|
|
QPixmap pixmap;
|
|
QList<QImage> metatile_images;
|
|
bool smart_paths_enabled = false;
|
|
int paint_metatile_initial_x;
|
|
int paint_metatile_initial_y;
|
|
int paint_tile_index;
|
|
int paint_tile_width = 1;
|
|
int paint_tile_height = 1;
|
|
int paint_tile_initial_x;
|
|
int paint_tile_initial_y;
|
|
int selected_metatiles_width;
|
|
int selected_metatiles_height;
|
|
QList<uint16_t> *selected_metatiles = nullptr;
|
|
uint16_t paint_collision;
|
|
uint16_t paint_elevation;
|
|
|
|
Block *getBlock(int x, int y);
|
|
void setBlock(int x, int y, Block block);
|
|
void _setBlock(int x, int y, Block block);
|
|
|
|
void floodFillCollisionElevation(int x, int y, uint16_t collision, uint16_t elevation);
|
|
void _floodFillCollisionElevation(int x, int y, uint16_t collision, uint16_t elevation);
|
|
|
|
History<HistoryItem*> history;
|
|
void undo();
|
|
void redo();
|
|
void commit();
|
|
|
|
QList<Event*> getAllEvents();
|
|
void removeEvent(Event *event);
|
|
void addEvent(Event *event);
|
|
QMap<QString, QList<Event*>> events;
|
|
|
|
QList<Connection*> connections;
|
|
QPixmap renderConnection(Connection);
|
|
void setNewDimensionsBlockdata(int newWidth, int newHeight);
|
|
void setDimensions(int newWidth, int newHeight, bool setNewBlockData = true);
|
|
|
|
QPixmap renderBorder();
|
|
void cacheBorder();
|
|
|
|
bool hasUnsavedChanges();
|
|
void hoveredTileChanged(int x, int y, int block);
|
|
void clearHoveredTile();
|
|
void hoveredMetatileChanged(int block);
|
|
void clearHoveredMetatile();
|
|
void hoveredMovementPermissionTileChanged(int collision, int elevation);
|
|
void clearHoveredMovementPermissionTile();
|
|
void setSelectedMetatilesFromTilePicker();
|
|
|
|
signals:
|
|
void paintTileChanged();
|
|
void paintCollisionChanged(Map *map);
|
|
void mapChanged(Map *map);
|
|
void mapNeedsRedrawing();
|
|
void statusBarMessage(QString);
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // MAP_H
|