123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- #ifndef MAP_H
- #define MAP_H
-
- #include "tileset.h"
- #include "blockdata.h"
- #include "event.h"
-
- #include <QPixmap>
- #include <QObject>
- #include <QDebug>
-
-
- template <typename T>
- class History {
- public:
- QList<T> history;
- int head = -1;
- int saved = -1;
-
- History() {
-
- }
- T pop() {
- 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()) {
- history.removeLast();
- }
- if (saved > head) {
- saved = -1;
- }
- history.append(commit);
- head++;
- }
- void save() {
- saved = head;
- }
- bool isSaved() {
- return saved == head;
- }
- };
-
- class Connection {
- public:
- Connection() {
- }
- public:
- QString direction;
- QString offset;
- QString map_name;
- };
-
- class Map : public QObject
- {
- Q_OBJECT
- public:
- explicit Map(QObject *parent = 0);
-
- public:
- QString name;
- QString attributes_label;
- QString events_label;
- QString scripts_label;
- QString connections_label;
- QString song;
- QString index;
- QString location;
- QString visibility;
- QString weather;
- QString type;
- QString unknown;
- QString show_location;
- QString battle_scene;
-
- QString width;
- QString height;
- QString border_label;
- QString blockdata_label;
- QString tileset_primary_label;
- QString tileset_secondary_label;
-
- Tileset *tileset_primary = NULL;
- Tileset *tileset_secondary = NULL;
-
- Blockdata* blockdata = NULL;
-
- public:
- int getWidth();
- int getHeight();
- Tileset* getBlockTileset(int);
- int getBlockIndex(int index);
- Metatile* getMetatile(int);
- QImage getMetatileImage(int);
- QImage getMetatileTile(int);
- QPixmap render();
- QPixmap renderMetatiles();
-
- QPixmap renderCollision();
- QImage collision_image;
- QPixmap collision_pixmap;
- QImage getCollisionMetatileImage(Block);
- QImage getElevationMetatileImage(Block);
- QImage getCollisionMetatileImage(int);
- QImage getElevationMetatileImage(int);
-
- QPixmap renderCollisionMetatiles();
- QPixmap renderElevationMetatiles();
- void drawSelection(int i, int w, QPainter *painter);
-
- bool blockChanged(int, Blockdata*);
- Blockdata* cached_blockdata = NULL;
- void cacheBlockdata();
- Blockdata* cached_collision = NULL;
- void cacheCollision();
- QImage image;
- QPixmap pixmap;
- QList<QImage> metatile_images;
- int paint_tile;
- int paint_collision;
- int 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 floodFill(int x, int y, uint tile);
- void _floodFill(int x, int y, uint tile);
- void floodFillCollision(int x, int y, uint collision);
- void _floodFillCollision(int x, int y, uint collision);
- void floodFillElevation(int x, int y, uint elevation);
- void _floodFillElevation(int x, int y, uint elevation);
- void floodFillCollisionElevation(int x, int y, uint collision, uint elevation);
- void _floodFillCollisionElevation(int x, int y, uint collision, uint elevation);
-
- History<Blockdata*> history;
- void undo();
- void redo();
- void commit();
-
- QString object_events_label;
- QString warps_label;
- QString coord_events_label;
- QString bg_events_label;
-
- QList<Event*> getAllEvents();
- QList<Event*> getEventsByType(QString type);
- void removeEvent(Event *event);
- void addEvent(Event *event);
- QMap<QString, QList<Event*>> events;
-
- QList<Connection*> connections;
- QPixmap renderConnection(Connection);
-
- QImage border_image;
- QPixmap border_pixmap;
- Blockdata *border = NULL;
- Blockdata *cached_border = NULL;
- QPixmap renderBorder();
- void cacheBorder();
-
- bool hasUnsavedChanges();
-
- QList<QList<QRgb> > getBlockPalettes(int metatile_index);
-
- signals:
- void paintTileChanged(Map *map);
- void paintCollisionChanged(Map *map);
- void mapChanged(Map *map);
-
- public slots:
- };
-
- #endif // MAP_H
|