UltimateZoneBuilder/Source/Resources/Actions.cfg

316 lines
7.3 KiB
INI
Raw Normal View History

2007-06-24 22:53:41 +00:00
/******************************************\
Doom Builder Actions Configuration
\******************************************/
// This just defines which actions there are, what description they have and
// some behaviour options. The Doom Builder core will bind to these actions
// with delegates (function pointers) where you use the BeginAction and
// EndAction attributes.
// Behaviour options:
//
// allowkeys: Allows the user to bind standard keys to this action.
// allowmouse: Allows the user to bind mouse buttons to this action.
// allowscroll: Allows the user to bind the scrollwheel to this action.
// disregardshift: This action will be triggered regardless if Shift or Control are used.
// repeat: BeginAction will be called for automatic key repetition.
//
// allowkeys and allowmouse are true by default, the others are false by default.
//
2007-06-24 22:53:41 +00:00
testaction
{
title = "Developer: Test";
description = "Does whatever the developer wants to test.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
2007-06-24 22:53:41 +00:00
newmap
{
title = "File: New Map";
description = "Starts with a new, empty workspace to begin drawing a map from scratch.";
2007-06-25 19:28:03 +00:00
allowkeys = true;
allowmouse = false;
allowscroll = false;
2007-06-24 22:53:41 +00:00
}
openmap
{
title = "File: Open Map";
description = "Opens an existing map from WAD file for viewing or modifying.";
2007-06-25 19:28:03 +00:00
allowkeys = true;
allowmouse = false;
allowscroll = false;
2007-06-24 22:53:41 +00:00
}
closemap
{
title = "File: Close Map";
description = "Closes the current map and the WAD file in which it exists.";
2007-06-25 19:28:03 +00:00
allowkeys = true;
allowmouse = false;
allowscroll = false;
}
savemap
{
title = "File: Save Map";
2007-10-14 21:31:45 +00:00
description = "Saves the current map to the opened source WAD file.";
allowkeys = true;
allowmouse = false;
allowscroll = false;
}
2007-10-14 15:44:55 +00:00
savemapas
{
title = "File: Save Map As";
description = "Saves the current map and all resources from the source WAD file to a new WAD file.";
allowkeys = true;
allowmouse = false;
allowscroll = false;
}
2007-10-14 17:48:15 +00:00
savemapinto
{
title = "File: Save Map Into";
description = "Saves the current map without any other resources into an existing or new WAD file.";
allowkeys = true;
allowmouse = false;
allowscroll = false;
}
2007-10-14 21:31:45 +00:00
mapoptions
{
title = "Edit: Map Options";
2007-11-10 19:24:52 +00:00
description = "Shows the Map Options dialog which allows changing the map lump name, game configuration and custom resources.";
2007-10-14 21:31:45 +00:00
allowkeys = true;
allowmouse = false;
allowscroll = false;
}
2007-09-27 22:55:03 +00:00
configuration
{
title = "Tools: Game Configurations";
2007-11-10 19:24:52 +00:00
description = "Shows the Game Configurations dialog which allows you to configure settings such as nodebuilder, testing program and resources.";
allowkeys = true;
allowmouse = false;
allowscroll = false;
}
preferences
{
title = "Tools: Preferences";
2007-11-10 19:24:52 +00:00
description = "Shows this Preferences dialog.";
2007-09-27 22:55:03 +00:00
allowkeys = true;
allowmouse = false;
allowscroll = false;
}
2007-10-14 21:31:45 +00:00
reloadresources
{
title = "Tools: Reload Resources";
description = "Reloads all data resources such as game configuration, textures and flats. Useful when resource files have been changed outside of Doom Builder.";
2007-10-14 21:31:45 +00:00
allowkeys = true;
allowmouse = false;
allowscroll = false;
}
2007-10-20 19:50:03 +00:00
2008-01-02 21:49:43 +00:00
cancelmode
2007-10-20 19:50:03 +00:00
{
2008-01-02 21:49:43 +00:00
title = "Edit: Cancel Action";
description = "Cancels the current action and switches back to normal editing mode.";
2007-10-20 19:50:03 +00:00
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
acceptmode
{
title = "Edit: Accept Action";
description = "Accepts the changes in the current action and switches back to normal editing mode.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
classicselect
{
title = "2D: Select";
description = "Selects the highlighted item. Also allows selection by drawing a rectangle.";
allowkeys = true;
allowmouse = true;
allowscroll = false;
disregardshift = true;
}
classicedit
{
title = "2D: Edit";
description = "Edits the properties of the selected items or drags the selected items. Also initiates drawing or inserts new things when no selection is made.";
allowkeys = true;
allowmouse = true;
allowscroll = false;
disregardshift = true;
}
2008-01-02 21:49:43 +00:00
scrollwest
2007-10-20 19:50:03 +00:00
{
2008-01-02 21:49:43 +00:00
title = "2D: Scroll West";
description = "Scrolls the 2D map view to the left.";
2007-10-20 19:50:03 +00:00
allowkeys = true;
allowmouse = true;
allowscroll = true;
repeat = true;
2007-10-20 19:50:03 +00:00
}
2008-01-02 21:49:43 +00:00
scrolleast
2007-10-20 19:50:03 +00:00
{
2008-01-02 21:49:43 +00:00
title = "2D: Scroll East";
description = "Scrolls the 2D map view to the right.";
2007-10-20 19:50:03 +00:00
allowkeys = true;
allowmouse = true;
allowscroll = true;
repeat = true;
2007-10-20 19:50:03 +00:00
}
2008-01-02 21:49:43 +00:00
scrollnorth
{
2008-01-02 21:49:43 +00:00
title = "2D: Scroll North";
description = "Scrolls the 2D map view up.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
repeat = true;
}
2007-11-07 21:14:27 +00:00
2008-01-02 21:49:43 +00:00
scrollsouth
2007-11-07 21:14:27 +00:00
{
2008-01-02 21:49:43 +00:00
title = "2D: Scroll South";
description = "Scrolls the 2D map view down.";
2008-01-02 21:49:43 +00:00
allowkeys = true;
allowmouse = true;
allowscroll = true;
repeat = true;
2008-01-02 21:49:43 +00:00
}
zoomin
{
title = "2D: Zoom In";
description = "Zooms in on the map at the current mouse location.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
repeat = true;
2008-01-02 21:49:43 +00:00
}
zoomout
{
title = "2D: Zoom Out";
description = "Zooms out on the map from the current mouse location.";
2007-11-07 21:14:27 +00:00
allowkeys = true;
allowmouse = true;
allowscroll = true;
repeat = true;
2007-11-07 21:14:27 +00:00
}
2007-11-10 19:24:52 +00:00
centerinscreen
{
title = "2D: Fit To Screen";
description = "Zooms out the map and centers it to make it completely fit in the screen, giving a high overview of the map.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
2007-11-10 19:24:52 +00:00
gridsetup
{
title = "View: Grid Setup";
description = "Shows the Custom Grid Setup dialog which allows you to set custom grid sizes and a background image.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
2007-11-10 19:24:52 +00:00
}
2007-11-12 22:43:01 +00:00
undo
{
title = "Edit: Undo";
description = "Restores the current map as it was before last action(s) performed.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
2007-11-12 22:43:01 +00:00
}
redo
{
title = "Edit: Redo";
description = "Repeats the action(s) performed before Undo was used.";
2007-11-12 22:43:01 +00:00
allowkeys = true;
allowmouse = true;
allowscroll = true;
2007-11-12 22:43:01 +00:00
}
2007-12-01 01:32:56 +00:00
togglesnap
{
title = "Edit: Snap to Grid";
description = "Toggles snapping to the grid for things and vertices that are being dragged.";
allowkeys = true;
allowmouse = false;
allowscroll = false;
}
toggleautomerge
{
title = "Edit: Merge Geometry";
description = "Toggles automatic merging of geometry for vertices and structures that are being dragged.";
allowkeys = true;
2007-12-01 01:32:56 +00:00
allowmouse = true;
allowscroll = true;
}
clearselection
{
title = "Edit: Clear Selection";
description = "Deselects all selected elements.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
2008-01-13 21:23:59 +00:00
moveforward
{
title = "3D: Move Forward";
description = "Moves the camera forward in 3D Visual Mode.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
movebackward
{
title = "3D: Move Backward";
description = "Moves the camera backward in 3D Visual Mode.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
moveleft
{
title = "3D: Move Left (strafe)";
description = "Strafes the camera left in 3D Visual Mode.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
moveright
{
title = "3D: Move Right (strafe)";
description = "Strafes the camera right in 3D Visual Mode.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}