2 Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
5 This file is part of GtkRadiant.
7 GtkRadiant is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 GtkRadiant is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GtkRadiant; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 Camera plugin for GtkRadiant
24 Copyright (C) 2002 Splash Damage Ltd.
30 CRenderer *Renderer = NULL;
33 CListener *Listener = NULL;
36 static const char *PLUGIN_NAME = "Camera";
38 // commands in the menu
39 static const char *PLUGIN_COMMANDS = "About...,-,Load Camera...,-,Preview Camera,-,Camera Inspector...,-,New Spline Camera,New Interpolated Camera,New Fixed Camera";
42 GtkWidget *g_pRadiantWnd = NULL;
43 GtkWidget *g_pCameraInspectorWnd = NULL;
44 CCamera *firstCam = NULL; // double linked list
45 CCamera *firstFreeCam = NULL; // single linked list
46 CCamera *currentCam = NULL; // single item
47 bool g_bEditOn = false;
48 int g_iEditMode = 0; // 0: editting points 1: adding points
49 int g_iActiveTarget = -1;
50 int g_iPreviewRunning = 0; // 0: no preview 1: start preview 2: preview in progress
52 static const char *PLUGIN_ABOUT = "Camera v1.0 for GtkRadiant\n"
53 "by Arnout van Meer (rr2do2@splashdamage.com)\n\n"
54 "This product contains software technology\n"
55 "from id Software, Inc. ('id Technology').\n"
56 "id Technology (c) 2001, 2002 id Software, Inc.";
61 const char* QERPlug_Init(void* hApp, void* pMainWidget)
63 g_pRadiantWnd = (GtkWidget*)pMainWidget;
66 for( int i = 0; i < MAX_CAMERAS; i++ ) {
68 firstFreeCam = new CCamera( i );
69 firstCam = firstFreeCam;
71 firstCam->SetNext( new CCamera( i ) );
72 firstCam = firstCam->GetNext();
79 Renderer = new CRenderer;
82 if( g_pCameraInspectorWnd == NULL )
83 g_pCameraInspectorWnd = CreateCameraInspectorDialog();
85 GetFileTypeRegistry()->addType("camera", "", filetype_t("Camera file", "*.camera"));
87 return "Camera for GtkRadiant";
90 const char* QERPlug_GetName()
95 const char* QERPlug_GetCommandList()
97 return PLUGIN_COMMANDS;
100 void QERPlug_Dispatch (const char* p, float* vMin, float* vMax, bool bSingleBrush)
102 if( !strcmp( p, "New Fixed Camera" ) )
104 else if( !strcmp( p, "New Interpolated Camera" ) )
105 DoNewInterpolatedCamera();
106 else if( !strcmp( p, "New Spline Camera" ) )
108 else if( !strcmp( p, "Camera Inspector..." ) )
110 else if( !strcmp( p, "Preview Camera" ) )
112 else if( !strcmp( p, "Load Camera..." ) )
114 else if( !strcmp( p, "About..." ) )
115 g_FuncTable.m_pfnMessageBox( (GtkWidget *)g_pRadiantWnd, PLUGIN_ABOUT, "About", eMB_OK );
121 #include "itoolbar.h"
123 unsigned int ToolbarButtonCount()
128 class CameraInspectorButton : public IToolbarButton
131 virtual const char* getImage() const
133 return "camera_insp.bmp";
135 virtual const char* getText() const
139 virtual const char* getTooltip() const
141 return "Camera Inspector";
143 virtual void activate() const
147 virtual EType getType() const
153 CameraInspectorButton g_camerainspectorbutton;
155 const IToolbarButton* GetToolbarButton(unsigned int index)
157 return &g_camerainspectorbutton;
161 _QERFuncTable_1 g_FuncTable;
162 _QERQglTable g_QglTable;
163 _QERUITable g_UITable;
164 _QERCameraTable g_CameraTable;
166 // =============================================================================
171 class CameraSynapseClient : public CSynapseClient
174 // CSynapseClient API
175 bool RequestAPI(APIDescriptor_t *pAPI);
176 const char* GetInfo();
178 CameraSynapseClient() { }
179 virtual ~CameraSynapseClient() { }
182 CSynapseServer* g_pSynapseServer = NULL;
183 CameraSynapseClient g_SynapseClient;
185 extern "C" CSynapseClient* SYNAPSE_DLL_EXPORT Synapse_EnumerateInterfaces (const char *version, CSynapseServer *pServer)
187 if (strcmp(version, SYNAPSE_VERSION))
189 Syn_Printf("ERROR: synapse API version mismatch: should be '" SYNAPSE_VERSION "', got '%s'\n", version);
192 g_pSynapseServer = pServer;
193 g_pSynapseServer->IncRef();
194 Set_Syn_Printf(g_pSynapseServer->Get_Syn_Printf());
196 g_SynapseClient.AddAPI(TOOLBAR_MAJOR, "camera", sizeof(_QERPlugToolbarTable));
197 g_SynapseClient.AddAPI(PLUGIN_MAJOR, "camera", sizeof(_QERPluginTable));
199 g_SynapseClient.AddAPI(RADIANT_MAJOR, NULL, sizeof(_QERFuncTable_1), SYN_REQUIRE, &g_FuncTable);
200 g_SynapseClient.AddAPI(UI_MAJOR, NULL, sizeof(_QERUITable), SYN_REQUIRE, &g_UITable);
201 g_SynapseClient.AddAPI(QGL_MAJOR, NULL, sizeof(_QERQglTable), SYN_REQUIRE, &g_QglTable);
202 g_SynapseClient.AddAPI(CAMERA_MAJOR, NULL, sizeof(_QERCameraTable), SYN_REQUIRE, &g_CameraTable);
204 return &g_SynapseClient;
207 bool CameraSynapseClient::RequestAPI(APIDescriptor_t *pAPI)
209 if (!strcmp(pAPI->major_name, TOOLBAR_MAJOR))
211 _QERPlugToolbarTable* pTable= static_cast<_QERPlugToolbarTable*>(pAPI->mpTable);
213 pTable->m_pfnToolbarButtonCount = &ToolbarButtonCount;
214 pTable->m_pfnGetToolbarButton = &GetToolbarButton;
217 else if (!strcmp(pAPI->major_name, PLUGIN_MAJOR))
219 _QERPluginTable* pTable= static_cast<_QERPluginTable*>(pAPI->mpTable);
221 pTable->m_pfnQERPlug_Init = QERPlug_Init;
222 pTable->m_pfnQERPlug_GetName = QERPlug_GetName;
223 pTable->m_pfnQERPlug_GetCommandList = QERPlug_GetCommandList;
224 pTable->m_pfnQERPlug_Dispatch = QERPlug_Dispatch;
228 Syn_Printf("ERROR: RequestAPI( '%s' ) not found in '%s'\n", pAPI->major_name, GetInfo());
234 const char* CameraSynapseClient::GetInfo()
236 return "Camera plugin v1.0 - Arnout van Meer - built " __DATE__ " " RADIANT_VERSION;
244 CCamera *AllocCam() {
248 CCamera *cam = firstFreeCam;
249 firstFreeCam = firstFreeCam->GetNext();
252 cam->SetNext( firstCam );
253 firstCam->SetPrev( cam );
260 void FreeCam( CCamera *cam ) {
261 if( cam->GetPrev() ) {
262 if( cam->GetNext() ) {
263 cam->GetPrev()->SetNext( cam->GetNext() );
264 cam->GetNext()->SetPrev( cam->GetPrev() );
266 cam->GetPrev()->SetNext( NULL );
268 } else if( cam->GetNext() ) {
269 cam->GetNext()->SetPrev( NULL );
270 firstCam = cam->GetNext();
275 cam->GetCam()->clear();
279 cam->SetNext( firstFreeCam );
284 void SetCurrentCam( CCamera *cam ) {
288 CCamera *GetCurrentCam() {
289 return( currentCam );