-
Notifications
You must be signed in to change notification settings - Fork 224
/
map_tab.cpp
131 lines (113 loc) · 2.95 KB
/
map_tab.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
//////////////////////////////////////////////////////////////////////
// This file is part of Remere's Map Editor
//////////////////////////////////////////////////////////////////////
// Remere's Map Editor 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 3 of the License, or
// (at your option) any later version.
//
// Remere's Map Editor 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 this program. If not, see <http://www.gnu.org/licenses/>.
//////////////////////////////////////////////////////////////////////
#include "main.h"
#include "gui.h"
#include "editor.h"
#include "map.h"
#include "sprites.h"
#include "map_tab.h"
#include "editor_tabs.h"
#include "map_display.h"
MapTab::MapTab(MapTabbook* aui, Editor* editor) :
EditorTab(),
MapWindow(aui->notebook, *editor),
aui(aui)
{
iref = newd InternalReference;
iref->editor = editor;
iref->owner_count = 1;
aui->AddTab(this, true);
FitToMap();
}
MapTab::MapTab(const MapTab* other) :
EditorTab(),
MapWindow(other->aui, *other->iref->editor),
aui(other->aui),
iref(other->iref)
{
iref->owner_count++;
aui->AddTab(this, true);
FitToMap();
int x, y;
other->GetCanvas()->GetScreenCenter(&x, &y);
SetScreenCenterPosition(Position(x, y, other->GetCanvas()->GetFloor()));
}
MapTab::~MapTab()
{
iref->owner_count--;
if(iref->owner_count <= 0) {
delete iref->editor;
delete iref;
}
}
bool MapTab::IsCurrent() const
{
auto editor_tab = aui->GetCurrentTab();
if(!editor_tab) {
return false;
}
auto map_tab = dynamic_cast<MapTab*>(editor_tab);
if(!map_tab) {
return false;
}
return HasSameReference(map_tab);
}
bool MapTab::IsUniqueReference() const
{
return iref->owner_count == 1;
}
wxWindow* MapTab::GetWindow() const
{
return const_cast<MapTab*>(this);
}
MapCanvas* MapTab::GetCanvas() const
{
return canvas;
}
MapWindow* MapTab::GetView() const
{
return const_cast<MapWindow*>((const MapWindow*)this);
}
wxString MapTab::GetTitle() const
{
wxString ss;
const Map& map = iref->editor->getMap();
ss << wxstr(map.getName()) << (map.hasChanged() ? "*" : "");
return ss;
}
Editor* MapTab::GetEditor() const
{
return &editor;
}
Map* MapTab::GetMap() const
{
return &editor.getMap();
}
void MapTab::VisibilityCheck()
{
EditorTab* editorTab = aui->GetCurrentTab();
MapTab* mapTab = dynamic_cast<MapTab*>(editorTab);
UpdateDialogs(mapTab && HasSameReference(mapTab));
}
void MapTab::OnSwitchEditorMode(EditorMode mode)
{
gem->SetSprite(mode == DRAWING_MODE? EDITOR_SPRITE_DRAWING_GEM : EDITOR_SPRITE_SELECTION_GEM);
if(mode == SELECTION_MODE)
canvas->EnterSelectionMode();
else
canvas->EnterDrawingMode();
}