forked from jwvhewitt/gearhead-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapedit.pp
190 lines (157 loc) · 4.52 KB
/
mapedit.pp
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
unit MapEdit;
{
GearHead: Arena, a roguelike mecha CRPG
Copyright (C) 2005 Joseph Hewitt
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at
your option) any later version.
The full text of the LGPL can be found in license.txt.
This library 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 Lesser
General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
}
interface
Procedure EditMap;
implementation
{$IFDEF SDLMODE}
uses gears,locale,ui4gh,congfx,sdlinfo,sdlmap,sdlmenus;
{$ELSE}
uses gears,locale,ui4gh,congfx,coninfo,conmap,conmenus,context;
{$ENDIF}
Procedure SaveMap( GB: GameBoardPtr );
{ Prompt for a file name, then save a map to disk. }
var
FName: String;
F: Text;
X,Y: Integer;
begin
FName := GetStringFromUser( 'Enter filename - format "MAP_*.txt"' );
for X := 1 to XMax do begin
for Y := 1 to YMax do begin
GB^.Map[ X , Y ].Visible := False;
end;
end;
if FName <> '' then begin
Assign( F , Series_Directory + FName );
Rewrite( F );
WriteMap( GB^.Map , F );
Close( F );
end;
for X := 1 to XMax do begin
for Y := 1 to YMax do begin
GB^.Map[ X , Y ].Visible := True;
end;
end;
DisplayMap( GB );
end;
Procedure LoadMap( GB: GameBoardPtr );
{ Prompt for a file name, then load a map from disk. }
var
RPM: RPGMenuPtr;
FName: String;
F: Text;
X,Y: Integer;
begin
RPM := CreateRPGMenu( MenuItem , MenuSelect , ZONE_Menu );
BuildFileMenu( RPM , Series_Directory + '*MAP_*.txt' );
FName := SelectFile( RPM );
DisposeRPGMenu( RPM );
if FName <> '' then begin
Assign( F , Series_Directory + FName );
Reset( F );
GB^.Map := ReadMap( F );
Close( F );
end;
for X := 1 to XMax do begin
for Y := 1 to YMax do begin
GB^.Map[ X , Y ].Visible := True;
end;
end;
DisplayMap( GB );
end;
Procedure ClearMap( GB: GameBoardPtr; Pen: Integer );
var
X,Y: Integer;
begin
for X := 1 to XMax do begin
for Y := 1 to YMax do begin
GB^.Map[ X , Y ].Terr := Pen;
end;
end;
end;
Procedure EditMap;
{ Edit the given map. Save it to disk if need be. }
{ The map is edited with visibility all turned on. When the map }
{ is saved. the visibility will be turned off. }
var
A: CHar;
Pen,Palette,X,Y: Integer;
GB: GameBoardPtr;
Procedure RepositionCursor( D: Integer );
begin
RedrawTile( gb, X , Y );
if OnTheMap( X + AngDir[ D , 1 ] , Y + AngDir[ D , 2 ] ) then begin
X := X + AngDir[ D , 1 ];
Y := Y + AngDir[ D , 2 ];
end;
end;
begin
{ Create a map, and clear it. }
GB := NewMap;
for X := 1 to XMax do begin
for Y := 1 to YMax do begin
GB^.Map[ X , Y ].Visible := True;
GB^.Map[ X , Y ].Terr := 1;
end;
end;
DisplayMap( GB );
{ Initialize our pointer. }
Pen := 1;
Palette := 1;
X := 1;
Y := 1;
repeat
IndicateTile( GB , X , Y );
MapEditInfo( Pen , Palette , X , Y );
A := RPGKey;
if A = KeyMap[ KMC_North ].KCode then begin
RepositionCursor( 6 );
end else if A = KeyMap[ KMC_South ].KCode then begin
RepositionCursor( 2 );
end else if A = KeyMap[ KMC_West ].KCode then begin
RepositionCursor( 4 );
end else if A = KeyMap[ KMC_East ].KCode then begin
RepositionCursor( 0 );
end else if A = KeyMap[ KMC_NorthEast ].KCode then begin
RepositionCursor( 7 );
end else if A = KeyMap[ KMC_SouthWest ].KCode then begin
RepositionCursor( 3 );
end else if A = KeyMap[ KMC_NorthWest ].KCode then begin
RepositionCursor( 5 );
end else if A = KeyMap[ KMC_SouthEast ].KCode then begin
RepositionCursor( 1 );
end else if A = ']' then begin
Pen := Pen + 1;
if Pen > NumTerr then pen := 1;
end else if A = '[' then begin
Pen := Pen - 1;
if Pen < 1 then pen := NumTerr;
end else if A = ' ' then begin
GB^.Map[ X , Y ].Terr := Pen;
end else if A = 'S' then begin
SaveMap( GB );
end else if A = 'L' then begin
LoadMap( GB );
end else if A = 'C' then begin
ClearMap( GB , Pen );
end;
until A = 'Q';
{ Get rid of the map. }
DisposeMap( GB );
end;
end.