2007-06-24 22:53:41 +00:00
/******************************************\
Doom Builder Actions Configuration
\******************************************/
// This just defines which actions there are and what description they have
// The source code will bind to these actions with delegates (function pointers)
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
}
2007-06-25 14:42:23 +00:00
closemap
{
title = "File: Close Map";
description = "Closes the current map and the WAD file in which it exits.";
2007-06-25 19:28:03 +00:00
allowkeys = true;
allowmouse = false;
allowscroll = false;
2007-06-25 14:42:23 +00:00
}
2007-06-26 06:01:52 +00:00
2007-10-13 14:05:45 +00:00
savemap
{
title = "File: Save Map";
2007-10-14 21:31:45 +00:00
description = "Saves the current map to the opened source WAD file.";
2007-10-13 14:05:45 +00:00
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";
description = "Shows the map options dialog which allows changing the map lump name, game configuration and custom resources.";
allowkeys = true;
allowmouse = false;
allowscroll = false;
}
2007-06-26 06:01:52 +00:00
scrollwest
{
title = "2D: Scroll West";
description = "Scrolls the 2D map view to the left.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
scrolleast
{
title = "2D: Scroll East";
description = "Scrolls the 2D map view to the right.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
scrollnorth
{
title = "2D: Scroll North";
description = "Scrolls the 2D map view to the north.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
scrollsouth
{
title = "2D: Scroll South";
description = "Scrolls the 2D map view to the south.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
zoomin
{
title = "2D: Zoom In";
description = "Zooms in on the map at the current mouse location.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
zoomout
{
title = "2D: Zoom Out";
description = "Zooms out on the map from the current mouse location.";
allowkeys = true;
allowmouse = true;
allowscroll = true;
}
2007-09-27 22:55:03 +00:00
configuration
{
2007-10-09 20:47:08 +00:00
title = "Tools: Game Configurations";
2007-10-14 21:31:45 +00:00
description = "Shows the game configurations dialog which allows you to configure settings such as nodebuilder, testing program and resources.";
2007-10-09 20:47:08 +00:00
allowkeys = true;
allowmouse = false;
allowscroll = false;
}
preferences
{
title = "Tools: Preferences";
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. Usefull when resource files have been changed outside of Doom Builder.";
allowkeys = true;
allowmouse = false;
allowscroll = false;
}