/* Copyright (C) 2001-2006, William Joseph. All Rights Reserved. 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 "brushmodule.h" #include "qerplugin.h" #include "brushnode.h" #include "brushmanip.h" #include "preferencesystem.h" #include "stringio.h" #include "map.h" #include "qe3.h" #include "mainframe.h" #include "preferences.h" LatchedBool g_useAlternativeTextureProjection(false, "Use alternative texture-projection"); bool g_showAlternativeTextureProjectionOption = false; bool getTextureLockEnabled() { return g_brush_texturelock_enabled; } void Face_importSnapPlanes(bool value) { Face::m_quantise = value ? quantiseInteger : quantiseFloating; } typedef FreeCaller1 FaceImportSnapPlanesCaller; void Face_exportSnapPlanes(const BoolImportCallback& importer) { importer(Face::m_quantise == quantiseInteger); } typedef FreeCaller1 FaceExportSnapPlanesCaller; void Brush_constructPreferences(PreferencesPage& page) { page.appendCheckBox( "", "Snap planes to integer grid", FaceImportSnapPlanesCaller(), FaceExportSnapPlanesCaller() ); page.appendEntry( "Default texture scale", g_texdef_default_scale ); if(g_showAlternativeTextureProjectionOption) { page.appendCheckBox( "", "Use alternative texture-projection", LatchedBoolImportCaller(g_useAlternativeTextureProjection), BoolExportCaller(g_useAlternativeTextureProjection.m_latched) ); } } void Brush_constructPage(PreferenceGroup& group) { PreferencesPage page(group.createPage("Brush", "Brush Settings")); Brush_constructPreferences(page); } void Brush_registerPreferencesPage() { PreferencesDialog_addSettingsPage(FreeCaller1()); } void Brush_Construct(EBrushType type) { if(type == eBrushTypeQuake3) { g_showAlternativeTextureProjectionOption = true; GlobalPreferenceSystem().registerPreference( "AlternativeTextureProjection", BoolImportStringCaller(g_useAlternativeTextureProjection.m_latched), BoolExportStringCaller(g_useAlternativeTextureProjection.m_latched) ); g_useAlternativeTextureProjection.useLatched(); if(g_useAlternativeTextureProjection.m_value) { type = eBrushTypeQuake3BP; } } Brush_registerCommands(); Brush_registerPreferencesPage(); BrushFilters_construct(); BrushClipPlane::constructStatic(); BrushInstance::constructStatic(); Brush::constructStatic(type); Brush::m_maxWorldCoord = g_MaxWorldCoord; BrushInstance::m_counter = &g_brushCount; g_texdef_default_scale = 0.5f; const char* value = g_pGameDescription->getKeyValue("default_scale"); if(!string_empty(value)) { float scale = static_cast(atof(value)); if(scale != 0) { g_texdef_default_scale = scale; } else { globalErrorStream() << "error parsing \"default_scale\" attribute\n"; } } FaceTextureClipboard_setDefault(); GlobalPreferenceSystem().registerPreference("TextureLock", BoolImportStringCaller(g_brush_texturelock_enabled), BoolExportStringCaller(g_brush_texturelock_enabled)); GlobalPreferenceSystem().registerPreference("BrushSnapPlanes", makeBoolStringImportCallback(FaceImportSnapPlanesCaller()), makeBoolStringExportCallback(FaceExportSnapPlanesCaller())); GlobalPreferenceSystem().registerPreference("TexdefDefaultScale", FloatImportStringCaller(g_texdef_default_scale), FloatExportStringCaller(g_texdef_default_scale)); GridStatus_getTextureLockEnabled = getTextureLockEnabled; g_texture_lock_status_changed = FreeCaller(); } void Brush_Destroy() { Brush::m_maxWorldCoord = 0; BrushInstance::m_counter = 0; Brush::destroyStatic(); BrushInstance::destroyStatic(); BrushClipPlane::destroyStatic(); } void Brush_clipperColourChanged() { BrushClipPlane::destroyStatic(); BrushClipPlane::constructStatic(); } class Quake3BrushCreator : public BrushCreator { public: scene::Node& createBrush() { return (new BrushNode)->node(); } bool useAlternativeTextureProjection() const { return g_useAlternativeTextureProjection.m_value; } }; Quake3BrushCreator g_Quake3BrushCreator; BrushCreator& GetBrushCreator() { return g_Quake3BrushCreator; } #include "modulesystem/singletonmodule.h" #include "modulesystem/moduleregistry.h" class BrushDependencies : public GlobalRadiantModuleRef, public GlobalSceneGraphModuleRef, public GlobalShaderCacheModuleRef, public GlobalSelectionModuleRef, public GlobalOpenGLModuleRef, public GlobalUndoModuleRef, public GlobalFilterModuleRef { }; class BrushDoom3API : public TypeSystemRef { BrushCreator* m_brushdoom3; public: typedef BrushCreator Type; STRING_CONSTANT(Name, "doom3"); BrushDoom3API() { Brush_Construct(eBrushTypeDoom3); m_brushdoom3 = &GetBrushCreator(); } ~BrushDoom3API() { Brush_Destroy(); } BrushCreator* getTable() { return m_brushdoom3; } }; typedef SingletonModule BrushDoom3Module; typedef Static StaticBrushDoom3Module; StaticRegisterModule staticRegisterBrushDoom3(StaticBrushDoom3Module::instance()); class BrushQuake4API : public TypeSystemRef { BrushCreator* m_brushquake4; public: typedef BrushCreator Type; STRING_CONSTANT(Name, "quake4"); BrushQuake4API() { Brush_Construct(eBrushTypeQuake4); m_brushquake4 = &GetBrushCreator(); } ~BrushQuake4API() { Brush_Destroy(); } BrushCreator* getTable() { return m_brushquake4; } }; typedef SingletonModule BrushQuake4Module; typedef Static StaticBrushQuake4Module; StaticRegisterModule staticRegisterBrushQuake4(StaticBrushQuake4Module::instance()); class BrushQuake3API : public TypeSystemRef { BrushCreator* m_brushquake3; public: typedef BrushCreator Type; STRING_CONSTANT(Name, "quake3"); BrushQuake3API() { Brush_Construct(eBrushTypeQuake3); m_brushquake3 = &GetBrushCreator(); } ~BrushQuake3API() { Brush_Destroy(); } BrushCreator* getTable() { return m_brushquake3; } }; typedef SingletonModule BrushQuake3Module; typedef Static StaticBrushQuake3Module; StaticRegisterModule staticRegisterBrushQuake3(StaticBrushQuake3Module::instance()); class BrushQuake2API : public TypeSystemRef { BrushCreator* m_brushquake2; public: typedef BrushCreator Type; STRING_CONSTANT(Name, "quake2"); BrushQuake2API() { Brush_Construct(eBrushTypeQuake2); m_brushquake2 = &GetBrushCreator(); } ~BrushQuake2API() { Brush_Destroy(); } BrushCreator* getTable() { return m_brushquake2; } }; typedef SingletonModule BrushQuake2Module; typedef Static StaticBrushQuake2Module; StaticRegisterModule staticRegisterBrushQuake2(StaticBrushQuake2Module::instance()); class BrushQuake1API : public TypeSystemRef { BrushCreator* m_brushquake1; public: typedef BrushCreator Type; STRING_CONSTANT(Name, "quake"); BrushQuake1API() { Brush_Construct(eBrushTypeQuake); m_brushquake1 = &GetBrushCreator(); } ~BrushQuake1API() { Brush_Destroy(); } BrushCreator* getTable() { return m_brushquake1; } }; typedef SingletonModule BrushQuake1Module; typedef Static StaticBrushQuake1Module; StaticRegisterModule staticRegisterBrushQuake1(StaticBrushQuake1Module::instance()); class BrushHalfLifeAPI : public TypeSystemRef { BrushCreator* m_brushhalflife; public: typedef BrushCreator Type; STRING_CONSTANT(Name, "halflife"); BrushHalfLifeAPI() { Brush_Construct(eBrushTypeHalfLife); m_brushhalflife = &GetBrushCreator(); } ~BrushHalfLifeAPI() { Brush_Destroy(); } BrushCreator* getTable() { return m_brushhalflife; } }; typedef SingletonModule BrushHalfLifeModule; typedef Static StaticBrushHalfLifeModule; StaticRegisterModule staticRegisterBrushHalfLife(StaticBrushHalfLifeModule::instance());