forked from Wirless/IdlersMapEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenubar.xml
More file actions
290 lines (280 loc) · 18.4 KB
/
menubar.xml
File metadata and controls
290 lines (280 loc) · 18.4 KB
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<?xml version="1.0" encoding="UTF-8"?>
<menubar>
<!--
a - enable autoborder
b
c - creature palette
d - doodad palette
e - show zones
f - show creatures
g - ghost loose items
h - house palette
i - item palette
j - jump to brush
k - wall hooks
l - animation
m - minimap
n - collection palette
o - show pathing
p - jump to prev pos
q - show floor shade
r - raw palette
s - show spawns
t - terrain palette
u - show locked doors
v - highlight items
w - waypoint palette
x - RESERVED FOR ROTATE HOTKEY
y - show tooltips
z - RESERVED FOR ROTATE HOTKEY
-->
<menu name="File">
<item name="New..." hotkey="Ctrl+N" action="NEW" help="Create a new map."/>
<item name="Open..." hotkey="Ctrl+O" action="OPEN" help="Open another map."/>
<item name="Save" hotkey="Ctrl+S" action="SAVE" help="Save the current map."/>
<item name="Save As..." hotkey="Ctrl+Alt+S" action="SAVE_AS" help="Save the current map as a new file."/>
<item name="Close" hotkey="Ctrl+Q" action="CLOSE" help="Closes the currently open map."/>
<separator/>
<menu name="Import">
<item name="Import Map..." action="IMPORT_MAP" help="Import map data from another map file."/>
<item name="Import Monsters/NPC..." action="IMPORT_MONSTERS" help="Import either a monsters.xml file or a specific monster/NPC."/>
</menu>
<menu name="Export">
<item name="Export Minimap..." action="EXPORT_MINIMAP" help="Export minimap to an image file."/>
<item name="Export Tilesets..." action="EXPORT_TILESETS" help="Export tilesets to an xml file."/>
</menu>
<menu name="Reload">
<item name="Reload" hotkey="F5" action="RELOAD_DATA" help="Reloads all data files."/>
<item name="Reload RevScripts" action="RELOAD_REVSCRIPTS" help="Reloads RevScript files for the current map."/>
</menu>
<separator/>
<menu name="Recent Files" special="RECENT_FILES"/>
<item name="Preferences" action="PREFERENCES" help="Configure the map editor."/>
<item name="Exit" action="EXIT" help="Close the editor."/>
</menu>
<menu name="Edit">
<item name="Undo" hotkey="Ctrl+Z" action="UNDO" help="Undo last action."/>
<item name="Redo" hotkey="Ctrl+Shift+Z" action="REDO" help="Redo last undid action."/>
<separator/>
<item name="Replace Items..." hotkey="Ctrl+Shift+F" action="REPLACE_ITEMS" help="Replaces all occurrences of one item with another."/>
<item name="Refresh Items" action="REFRESH_ITEMS" help="Refresh items to fix flags"/>
<separator/>
<menu name="Border Options">
<item name="Border Automagic" hotkey="A" action="AUTOMAGIC" help="Turns on all automatic border functions."/>
<separator/>
<item name="Borderize Selection" hotkey="Ctrl+B" action="BORDERIZE_SELECTION" help="Creates automatic borders in the entire selected area."/>
<item name="Borderize Map" action="BORDERIZE_MAP" help="Reborders the entire map."/>
<item name="Wallize Selection" hotkey="Ctrl+W" action="WALLIZE_SELECTION" help="Creates automatic walls in the entire selected area."/>
<item name="Wallize Map" action="WALLIZE_MAP" help="Rewallizes the entire map."/>
<item name="Randomize Selection" action="RANDOMIZE_SELECTION" help="Randomizes the ground tiles of the selected area."/>
<item name="Randomize Map" action="RANDOMIZE_MAP" help="Randomizes all tiles of the entire map."/>
</menu>
<menu name="Other Options">
<item name="Remove Items by ID..." action="MAP_REMOVE_ITEMS" help="Removes all items with the selected ID from the map."/>
<item name="Remove Duplicates..." action="MAP_REMOVE_DUPLICATES" help="Removes all duplicate items from the map."/>
<item name="Remove all Corpses..." action="MAP_REMOVE_CORPSES" help="Removes all corpses from the map."/>
<item name="Remove all Unreachable Tiles..." action="MAP_REMOVE_UNREACHABLE_TILES" help="Removes all tiles that cannot be reached (or seen) by the player from the map."/>
<item name="Clear Invalid Houses" action="CLEAR_INVALID_HOUSES" help="Clears house tiles not belonging to any house."/>
<item name="Clear Modified State" action="CLEAR_MODIFIED_STATE" help="Clears the modified state from all tiles."/>
</menu>
<separator/>
<item name="Cut" hotkey="Ctrl+X" action="CUT" help="Cut a part of the map."/>
<item name="Copy" hotkey="Ctrl+C" action="COPY" help="Copy a part of the map."/>
<item name="Paste" hotkey="Ctrl+V" action="PASTE" help="Paste a part of the map."/>
</menu>
<menu name="Editor">
<item name="New View" hotkey="Ctrl+Shift+N" action="NEW_VIEW" help="Creates a new view of the current map."/>
<item name="Enter Fullscreen" hotkey="F11" action="TOGGLE_FULLSCREEN" help="Changes between fullscreen mode and windowed mode."/>
<item name="Take Screenshot" hotkey="F10" action="TAKE_SCREENSHOT" help="Saves the current view to the disk."/>
<separator/>
<menu name="Zoom">
<item name="Zoom In" hotkey="Ctrl++" action="ZOOM_IN" help="Increase the zoom."/>
<item name="Zoom Out" hotkey="Ctrl+-" action="ZOOM_OUT" help="Decrease the zoom."/>
<item name="Zoom Normal" hotkey="Ctrl+0" action="ZOOM_NORMAL" help="Normal zoom(100%)."/>
</menu>
</menu>
<menu name="Search">
<item name="Find Item..." hotkey="Ctrl+F" action="FIND_ITEM" help="Find all instances of an item type the map."/>
<item name="Find Creature..." hotkey="Ctrl+Shift+C" action="FIND_CREATURE" help="Find all instances of a creature on the map."/>
<separator/>
<item name="Find Zones" action="SEARCH_ON_MAP_ZONES" help="Find all zones on map."/>
<item name="Find Unique" action="SEARCH_ON_MAP_UNIQUE" help="Find all items with an unique ID on map."/>
<item name="Find Action" action="SEARCH_ON_MAP_ACTION" help="Find all items with an action ID on map."/>
<item name="Find Container" action="SEARCH_ON_MAP_CONTAINER" help="Find all containers on map."/>
<item name="Find Writeable" action="SEARCH_ON_MAP_WRITEABLE" help="Find all writeable items on map."/>
<separator/>
<item name="Find Everything" action="SEARCH_ON_MAP_EVERYTHING" help="Find all unique/action/text/container items."/>
</menu>
<menu name="Map">
<item name="Edit Towns" hotkey="Ctrl+T" action="EDIT_TOWNS" help="Edit towns."/>
<separator/>
<item name="Cleanup..." action="MAP_CLEANUP" help="Removes all items that do not exist in the OTB file (red tiles the server can't load)."/>
<item name="Summarize" hotkey="Ctrl+Shift+S" action="MAP_SUMMARIZE" help="Show a summary of all items on the map with their counts."/>
<item name="Properties..." hotkey="Ctrl+P" action="MAP_PROPERTIES" help="Show and change the map properties."/>
<item name="Statistics" hotkey="F8" action="MAP_STATISTICS" help="Show map statistics."/>
</menu>
<menu name="Selection">
<item name="Replace Items on Selection" action="REPLACE_ON_SELECTION_ITEMS" help="Replace items on selected area."/>
<item name="Find Item on Selection" action="SEARCH_ON_SELECTION_ITEM" help="Find items on selected area."/>
<item name="Remove Item on Selection" action="REMOVE_ON_SELECTION_ITEM" help="Remove item on selected area."/>
<separator/>
<menu name="Find on Selection">
<item name="Find Everything" action="SEARCH_ON_SELECTION_EVERYTHING" help="Find all unique/action/text/container items."/>
<separator/>
<item name="Find Zones" action="SEARCH_ON_SELECTION_ZONES" help="Find all zones on selected area."/>
<item name="Find Unique" action="SEARCH_ON_SELECTION_UNIQUE" help="Find all items with an unique ID on selected area."/>
<item name="Find Action" action="SEARCH_ON_SELECTION_ACTION" help="Find all items with an action ID on selected area."/>
<item name="Find Container" action="SEARCH_ON_SELECTION_CONTAINER" help="Find all containers on selected area."/>
<item name="Find Writeable" action="SEARCH_ON_SELECTION_WRITEABLE" help="Find all writeable items on selected area."/>
</menu>
<separator/>
<menu name="Selection Mode">
<item name="Compensate Selection" action="SELECT_MODE_COMPENSATE" help="Compensate for floor difference when selecting."/>
<separator/>
<item name="Current Floor" action="SELECT_MODE_CURRENT" help="Select only current floor."/>
<item name="Lower Floors" action="SELECT_MODE_LOWER" help="Select all lower floors."/>
<item name="Visible Floors" action="SELECT_MODE_VISIBLE" help="Select only visible floors."/>
</menu>
<separator/>
<item name="Borderize Selection" hotkey="Ctrl+B" action="BORDERIZE_SELECTION" help="Creates automatic borders in the entire selected area."/>
<item name="Wallize Selection" hotkey="Ctrl+W" action="WALLIZE_SELECTION" help="Creates automatic walls in the entire selected area."/>
<item name="Randomize Selection" action="RANDOMIZE_SELECTION" help="Randomizes the ground tiles of the selected area."/>
</menu>
<menu name="View">
<item name="Show all Floors" hotkey="Ctrl+W" action="SHOW_ALL_FLOORS" help="If not checked other floors are hidden."/>
<item name="Show as Minimap" hotkey="Shift+E" action="SHOW_AS_MINIMAP" help="Show only the tile minimap colors."/>
<item name="Only show Colors" hotkey="Ctrl+E" action="SHOW_ONLY_COLORS" help="Show only the special tiles on the map."/>
<item name="Only show Modified" hotkey="Ctrl+M" action="SHOW_ONLY_MODIFIED" help="Show only the tiles that have been modified since the map was opened."/>
<item name="Always show zones" hotkey="" action="ALWAYS_SHOW_ZONES" help="Zones will be visible even on empty tiles."/>
<item name="Extended house shader" hotkey="" action="EXT_HOUSE_SHADER" help="Draw house brush on walls and items."/>
<separator/>
<item name="Show tooltips" hotkey="Y" action="SHOW_TOOLTIPS" help="Show tooltips."/>
<item name="Show grid" hotkey="Shift+G" action="SHOW_GRID" help="Shows a grid over all items."/>
<item name="Show client box" hotkey="Shift+I" action="SHOW_INGAME_BOX" help="Shadows out areas not visible ingame (from the center of the screen)."/>
<separator/>
<item name="Ghost loose items" hotkey="G" action="GHOST_ITEMS" help="Ghost items (except ground)."/>
<item name="Ghost higher floors" hotkey="Ctrl+L" action="GHOST_HIGHER_FLOORS" help="Ghost floors."/>
<item name="Show shade" hotkey="Q" action="SHOW_SHADE" help="Shade lower floors."/>
<separator/>
<item name="Use house colors" hotkey="" action="HOUSE_CUSTOM_COLORS" help="Color house tiles based on house ID. Colors all items on house tiles."/>
</menu>
<menu name="Show">
<item name="Show Animation" hotkey="L" action="SHOW_PREVIEW" help="Show item animations."/>
<item name="Show Light" hotkey="Shift+L" action="SHOW_LIGHTS" help="Show lights."/>
<item name="Show Light Strength" hotkey="Shift+K" action="SHOW_LIGHT_STR" help="Show indicators of light strength."/>
<item name="Show Technical Items" hotkey="Shift+T" action="SHOW_TECHNICAL_ITEMS" help="Shows some of special items that are not visible in game."/>
<separator/>
<item name="Show zones" hotkey="E" action="SHOW_ZONES" help="Show zones on the map."/>
<item name="Show creatures" hotkey="F" action="SHOW_CREATURES" help="Show creatures on the map."/>
<item name="Show spawns" hotkey="S" action="SHOW_SPAWNS" help="Show spawns on the map."/>
<item name="Show special" hotkey="" action="SHOW_SPECIAL" help="Show special tiles on the map, like PZ."/>
<item name="Show houses" hotkey="Ctrl+H" action="SHOW_HOUSES" help="Show houses on the map."/>
<item name="Show pathing" hotkey="O" action="SHOW_PATHING" help="Show blocking tiles."/>
<item name="Show towns" hotkey="" action="SHOW_TOWNS" help="Show temple positions."/>
<item name="Show waypoints" hotkey="Shift+W" action="SHOW_WAYPOINTS" help="Show waypoints."/>
<separator/>
<item name="Highlight Items" hotkey="V" action="HIGHLIGHT_ITEMS" help="Highlight tiles with items on them."/>
<item name="Highlight Locked Doors" hotkey="U" action="HIGHLIGHT_LOCKED_DOORS" help="Highlight doors that require key to open."/>
<item name="Show Wall Hooks" hotkey="K" action="SHOW_WALL_HOOKS" help="Show indicators for wall hooks."/>
</menu>
<menu name="Navigate">
<item name="Go to Previous Position" hotkey="P" action="GOTO_PREVIOUS_POSITION" help="Go to the previous screen center position."/>
<item name="Jump to Brush..." hotkey="J" action="JUMP_TO_BRUSH" help="Jump to a brush."/>
<item name="Jump to Item..." hotkey="Ctrl+J" action="JUMP_TO_ITEM_BRUSH" help="Jump to an item brush (RAW palette)."/>
<item name="Refresh Visible Area" hotkey="F6" action="MENU_REFRESH_VISIBLE_AREA" help="Refresh the visible area to show latest changes from server."/>
<separator/>
<menu name="Floor">
<item name="Floor 0" action="FLOOR_0" help=""/>
<item name="Floor 1" action="FLOOR_1" help=""/>
<item name="Floor 2" action="FLOOR_2" help=""/>
<item name="Floor 3" action="FLOOR_3" help=""/>
<item name="Floor 4" action="FLOOR_4" help=""/>
<item name="Floor 5" action="FLOOR_5" help=""/>
<item name="Floor 6" action="FLOOR_6" help=""/>
<item name="Floor 7" action="FLOOR_7" help=""/>
<item name="Floor 8" action="FLOOR_8" help=""/>
<item name="Floor 9" action="FLOOR_9" help=""/>
<item name="Floor 10" action="FLOOR_10" help=""/>
<item name="Floor 11" action="FLOOR_11" help=""/>
<item name="Floor 12" action="FLOOR_12" help=""/>
<item name="Floor 13" action="FLOOR_13" help=""/>
<item name="Floor 14" action="FLOOR_14" help=""/>
<item name="Floor 15" action="FLOOR_15" help=""/>
</menu>
</menu>
<menu name="Window">
<item name="Minimap" hotkey="M" action="WIN_MINIMAP" help="Displays the minimap window."/>
<item name="New Palette" action="NEW_PALETTE" help="Creates a new palette."/>
<menu name="Palette">
<item name="Terrain" hotkey="T" action="SELECT_TERRAIN" help="Select the Terrain palette."/>
<item name="Doodad" hotkey="D" action="SELECT_DOODAD" help="Select the Doodad palette."/>
<item name="Item" hotkey="I" action="SELECT_ITEM" help="Select the Item palette."/>
<item name="Collection" hotkey="N" action="SELECT_COLLECTION" help="Select the Collection palette."/>
<item name="House" hotkey="H" action="SELECT_HOUSE" help="Select the House palette."/>
<item name="Creature" hotkey="C" action="SELECT_CREATURE" help="Select the Creature palette."/>
<item name="Waypoint" hotkey="W" action="SELECT_WAYPOINT" help="Select the Waypoint palette."/>
<item name="RAW" hotkey="R" action="SELECT_RAW" help="Select the RAW palette."/>
</menu>
<menu name="Toolbars">
<item name="Brushes" action="VIEW_TOOLBARS_BRUSHES" help="Show or hide the Brushes toolbar."/>
<item name="Position" action="VIEW_TOOLBARS_POSITION" help="Show or hide the Position toolbar."/>
<item name="Sizes" action="VIEW_TOOLBARS_SIZES" help="Show or hide the Sizes toolbar."/>
<item name="Standard" action="VIEW_TOOLBARS_STANDARD" help="Show or hide the Standard toolbar."/>
</menu>
</menu>
<menu name="Experimental">
<item name="Fog in light view" hotkey="" action="EXPERIMENTAL_FOG" help="Apply fog filter to light effect."/>
</menu>
<menu name="About">
<item name="Extensions..." hotkey="F2" action="EXTENSIONS" help=""/>
<item name="Goto Website" hotkey="F3" action="GOTO_WEBSITE" help=""/>
<item name="About..." hotkey="F1" action="ABOUT" help=""/>
</menu>
<menu name="Server">
<item name="Host Server" action="ID_MENU_SERVER_HOST" help="Host a new server for collaborative mapping"/>
<item name="Connect to Server" action="ID_MENU_SERVER_CONNECT" help="Connect to an existing map server"/>
</menu>
<menu name="Idler">
<!-- all context menus that have been changed from vanilla functionalities -->
<item name="Hotkeys" hotkey="" action="SHOW_HOTKEYS" help="Hotkeys"/>
<separator/>
<item name="Remove Items by ID..." action="MAP_REMOVE_ITEMS" help="Removes all items with the selected ID from the map."/>
<item name="Remove Duplicates..." action="MAP_REMOVE_DUPLICATES" help="Removes all duplicate items from the map."/>
<item name="Remove all Corpses..." action="MAP_REMOVE_CORPSES" help="Removes all corpses from the map."/>
<separator/>
<item name="Go to Position..." hotkey="" action="GOTO_POSITION" help="Go to a specific XYZ position."/>
<item name="Edit Towns" hotkey="" action="EDIT_TOWNS" help="Edit towns."/>
<item name="Export Minimap..." action="EXPORT_MINIMAP" help="Export minimap to an image file."/>
<item name="Find Item..." hotkey="" action="FIND_ITEM" help="Find all instances of an item type the map."/>
<item name="Find Creature..." hotkey="" action="FIND_CREATURE" help="Find all instances of a creature on the map."/>
<item name="Replace Items..." hotkey="" action="REPLACE_ITEMS" help="Replaces all occurrences of one item with another."/>
<item name="Refresh Items" action="REFRESH_ITEMS" help="Refresh items to fix flags"/>
<!-- clickable buttons that toggle some settings such as select right click RAw toggle button and toggle button to disable map display right click context menu then.-->
<separator/>
<item name="Notes..." hotkey="Ctrl+N" action="MAP_NOTES" help="Create or edit notes for this map."/>
<item name="Recent Brushes" hotkey="Shift+ALT+R" action="WIN_RECENT_BRUSHES" help="Shows recently used brushes for quick access."/>
<separator/>
<item name="Monster Maker" hotkey="" action="SHOW_MONSTER_MAKER" help="Create and edit monsters with visual interface"/>
<item name="Add New Creature" hotkey="" action="ADD_NEW_CREATURE" help="Create new placeable creatures for map editor"/>
<separator/>
<item name="Doodads Filling Tool..." hotkey="" action="DOODADS_FILLING_TOOL" help="Automatically place decorative items on selected tiles or matching terrain"/>
<separator/>
<item name="Reset House IDs" hotkey="" action="RESET_HOUSE_IDS" help="Reset house IDs to fill gaps and create continuous numbering"/>
<item name="Reset Town IDs" hotkey="" action="RESET_TOWN_IDS" help="Reset town IDs to fill gaps and create continuous numbering"/>
<separator/>
<item name="Edit Items (OTB)..." action="EDIT_ITEMS_OTB" help="Edit items.otb file - modify item flags, properties, and generate missing items."/>
<separator/>
<menu name="Generate">
<item name="Procedural Map..." action="GENERATE_PROCEDURAL_MAP" help="Generate a procedural map with terrain layers."/>
<item name="Island Map..." action="GENERATE_ISLAND_MAP" help="Generate an island map."/>
<item name="Dungeon Map..." action="GENERATE_DUNGEON_MAP" help="Generate a dungeon map."/>
</menu>
<separator/>
<item name="New Detached View" hotkey="Ctrl+Shift+D" action="NEW_DETACHED_VIEW" help="Creates a new detached view of the current map that can be moved to another monitor."/>
<separator/>
</menu>
<menu name="Chat">
<item name="Register" action="CHAT_REGISTER" help="Register a new chat account" />
<item name="Connect" action="CHAT_CONNECT" help="Connect to the chat server" />
</menu>
</menubar>