208 lines
6.3 KiB
C++
208 lines
6.3 KiB
C++
/*
|
|
This file is part of GtkRadiant.
|
|
|
|
GtkRadiant 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 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
GtkRadiant 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 GtkRadiant; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "ufoai.h"
|
|
#include "ufoai_level.h"
|
|
#include "ufoai_gtk.h"
|
|
#include "ufoai_filters.h"
|
|
|
|
#include "debugging/debugging.h"
|
|
|
|
#include "iplugin.h"
|
|
|
|
#include "version.h"
|
|
|
|
#include "string/string.h"
|
|
#include "modulesystem/singletonmodule.h"
|
|
|
|
#define PLUGIN_VERSION "0.4"
|
|
|
|
#include "ifilter.h"
|
|
#include "ibrush.h"
|
|
#include "iundo.h" // declaration of undo system
|
|
#include "ientity.h" // declaration of entity system
|
|
#include "iscenegraph.h" // declaration of datastructure of the map
|
|
#include "scenelib.h" // declaration of datastructure of the map
|
|
#include "qerplugin.h" // declaration to use other interfaces as a plugin
|
|
#include "ieclass.h"
|
|
|
|
class UFOAIPluginDependencies :
|
|
public GlobalRadiantModuleRef, // basic class for all other module refs
|
|
public GlobalUndoModuleRef, // used to say radiant that something has changed and to undo that
|
|
public GlobalSceneGraphModuleRef, // necessary to handle data in the mapfile (change, retrieve data)
|
|
public GlobalEntityModuleRef, // to access and modify the entities
|
|
public GlobalEntityClassManagerModuleRef
|
|
{
|
|
public:
|
|
UFOAIPluginDependencies( void ) :
|
|
GlobalEntityModuleRef( GlobalRadiant().getRequiredGameDescriptionKeyValue( "entities" ) ),
|
|
GlobalEntityClassManagerModuleRef( GlobalRadiant().getRequiredGameDescriptionKeyValue( "entityclass" ) ){
|
|
}
|
|
};
|
|
|
|
namespace UFOAI
|
|
{
|
|
QWidget* g_mainwnd;
|
|
|
|
const char* init( void* hApp, void* pMainWidget ){
|
|
g_mainwnd = static_cast<QWidget*>( pMainWidget );
|
|
return "Initializing GTKRadiant UFOAI plugin";
|
|
}
|
|
const char* getName(){
|
|
return "UFO:AI";
|
|
}
|
|
const char* getCommandList(){
|
|
/*GlobalRadiant().getGameName()*/
|
|
return "About;-;Worldspawn reset;Worldspawn;Perform check;-;Level 1;Level 2;Level 3;Level 4;Level 5;Level 6;Level 7;Level 8;-;StepOn;ActorClip;WeaponClip;Nodraw";
|
|
}
|
|
const char* getCommandTitleList(){
|
|
return "";
|
|
}
|
|
void dispatch( const char* command, float* vMin, float* vMax, bool bSingleBrush ){
|
|
const char *message = NULL;
|
|
if ( string_equal( command, "About" ) ) {
|
|
GlobalRadiant().m_pfnMessageBox( g_mainwnd,
|
|
"UFO:AI Plugin (<a href='http://ufoai.sf.net'>http://ufoai.sf.net</a>)"
|
|
"<br>Build: " __DATE__
|
|
"<br>Radiant version: " RADIANT_VERSION
|
|
"<br>Plugin version: " PLUGIN_VERSION
|
|
"<br>Author: Martin Gerhardy (tlh2000/mattn)<br>",
|
|
"About", EMessageBoxType::Info, 0 );
|
|
}
|
|
else if ( string_equal( command, "Level 1" ) ) {
|
|
filter_level( CONTENTS_LEVEL1 );
|
|
}
|
|
else if ( string_equal( command, "Level 2" ) ) {
|
|
filter_level( CONTENTS_LEVEL2 );
|
|
}
|
|
else if ( string_equal( command, "Level 3" ) ) {
|
|
filter_level( CONTENTS_LEVEL3 );
|
|
}
|
|
else if ( string_equal( command, "Worldspawn" ) ) {
|
|
assign_default_values_to_worldspawn( false, &message );
|
|
}
|
|
else if ( string_equal( command, "Worldspawn reset" ) ) {
|
|
assign_default_values_to_worldspawn( true, &message );
|
|
}
|
|
else if ( string_equal( command, "Perform check" ) ) {
|
|
check_map_values( &message );
|
|
}
|
|
else if ( string_equal( command, "Level 4" ) ) {
|
|
filter_level( CONTENTS_LEVEL4 );
|
|
}
|
|
else if ( string_equal( command, "Level 5" ) ) {
|
|
filter_level( CONTENTS_LEVEL5 );
|
|
}
|
|
else if ( string_equal( command, "Level 6" ) ) {
|
|
filter_level( CONTENTS_LEVEL6 );
|
|
}
|
|
else if ( string_equal( command, "Level 7" ) ) {
|
|
filter_level( CONTENTS_LEVEL7 );
|
|
}
|
|
else if ( string_equal( command, "Level 8" ) ) {
|
|
filter_level( CONTENTS_LEVEL8 );
|
|
}
|
|
else if ( string_equal( command, "StepOn" ) ) {
|
|
filter_stepon();
|
|
}
|
|
else if ( string_equal( command, "ActorClip" ) ) {
|
|
filter_actorclip();
|
|
}
|
|
else if ( string_equal( command, "WeaponClip" ) ) {
|
|
filter_weaponclip();
|
|
}
|
|
else if ( string_equal( command, "NoDraw" ) ) {
|
|
filter_nodraw();
|
|
}
|
|
|
|
if ( message != NULL ) {
|
|
GlobalRadiant().m_pfnMessageBox( g_mainwnd,
|
|
message, "Note",
|
|
EMessageBoxType::Info, 0 );
|
|
}
|
|
SceneChangeNotify();
|
|
}
|
|
} // namespace
|
|
|
|
|
|
class UFOAIModule : public TypeSystemRef
|
|
{
|
|
_QERPluginTable m_plugin;
|
|
public:
|
|
typedef _QERPluginTable Type;
|
|
STRING_CONSTANT( Name, "UFO:AI" );
|
|
|
|
UFOAIModule(){
|
|
m_plugin.m_pfnQERPlug_Init = &UFOAI::init;
|
|
m_plugin.m_pfnQERPlug_GetName = &UFOAI::getName;
|
|
m_plugin.m_pfnQERPlug_GetCommandList = &UFOAI::getCommandList;
|
|
m_plugin.m_pfnQERPlug_GetCommandTitleList = &UFOAI::getCommandTitleList;
|
|
m_plugin.m_pfnQERPlug_Dispatch = &UFOAI::dispatch;
|
|
}
|
|
_QERPluginTable* getTable(){
|
|
return &m_plugin;
|
|
}
|
|
};
|
|
|
|
typedef SingletonModule<UFOAIModule, UFOAIPluginDependencies> SingletonUFOAIModule;
|
|
|
|
SingletonUFOAIModule g_UFOAIModule;
|
|
|
|
|
|
class UFOAIToolbarDependencies : public ModuleRef<_QERPluginTable>
|
|
{
|
|
public:
|
|
UFOAIToolbarDependencies() : ModuleRef<_QERPluginTable>( "UFO:AI" ){
|
|
}
|
|
};
|
|
|
|
class UFOAIToolbarModule : public TypeSystemRef
|
|
{
|
|
_QERPlugToolbarTable m_table;
|
|
public:
|
|
typedef _QERPlugToolbarTable Type;
|
|
STRING_CONSTANT( Name, "UFO:AI" );
|
|
|
|
UFOAIToolbarModule(){
|
|
if ( !strcmp( GlobalRadiant().getGameDescriptionKeyValue( "name" ), "UFO:Alien Invasion" ) ) {
|
|
m_table.m_pfnToolbarButtonCount = ToolbarButtonCount;
|
|
m_table.m_pfnGetToolbarButton = GetToolbarButton;
|
|
}
|
|
else
|
|
{
|
|
m_table.m_pfnToolbarButtonCount = ToolbarNoButtons;
|
|
m_table.m_pfnGetToolbarButton = GetToolbarNoButton;
|
|
}
|
|
}
|
|
_QERPlugToolbarTable* getTable(){
|
|
return &m_table;
|
|
}
|
|
};
|
|
|
|
typedef SingletonModule<UFOAIToolbarModule, UFOAIToolbarDependencies> SingletonUFOAIToolbarModule;
|
|
|
|
SingletonUFOAIToolbarModule g_UFOAIToolbarModule;
|
|
|
|
|
|
extern "C" void RADIANT_DLLEXPORT Radiant_RegisterModules( ModuleServer& server ){
|
|
initialiseModule( server );
|
|
|
|
g_UFOAIModule.selfRegister();
|
|
g_UFOAIToolbarModule.selfRegister();
|
|
}
|