]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/pluginapi.cpp
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / radiant / pluginapi.cpp
index c006913df8cb2a797185ba95994f0a106e575309..e951b41295d41ffa4e1fb528bc84fe4cbc26022d 100644 (file)
 
 
 // camera API
-void QERApp_GetCamera( Vector3& origin, Vector3& angles ){
-       CamWnd& camwnd = *g_pParentWnd->GetCamWnd();
-       origin = Camera_getOrigin( camwnd );
-       angles = Camera_getAngles( camwnd );
+void QERApp_GetCamera(Vector3 &origin, Vector3 &angles)
+{
+    CamWnd &camwnd = *g_pParentWnd->GetCamWnd();
+    origin = Camera_getOrigin(camwnd);
+    angles = Camera_getAngles(camwnd);
 }
 
-void QERApp_SetCamera( const Vector3& origin, const Vector3& angles ){
-       CamWnd& camwnd = *g_pParentWnd->GetCamWnd();
-       Camera_setOrigin( camwnd, origin );
-       Camera_setAngles( camwnd, angles );
+void QERApp_SetCamera(const Vector3 &origin, const Vector3 &angles)
+{
+    CamWnd &camwnd = *g_pParentWnd->GetCamWnd();
+    Camera_setOrigin(camwnd, origin);
+    Camera_setAngles(camwnd, angles);
 }
 
-void QERApp_GetCamWindowExtents( int *x, int *y, int *width, int *height ){
+void QERApp_GetCamWindowExtents(int *x, int *y, int *width, int *height)
+{
 #if 0
-       CamWnd* camwnd = g_pParentWnd->GetCamWnd();
+    CamWnd* camwnd = g_pParentWnd->GetCamWnd();
 
-       gtk_window_get_position( camwnd->m_window, x, y );
+    gtk_window_get_position( camwnd->m_window, x, y );
 
-       *width = camwnd->Camera()->width;
-       *height = camwnd->Camera()->height;
+    *width = camwnd->Camera()->width;
+    *height = camwnd->Camera()->height;
 #endif
 }
 
 #include "icamera.h"
 
-class CameraAPI
-{
-_QERCameraTable m_camera;
+class CameraAPI {
+    _QERCameraTable m_camera;
 public:
-typedef _QERCameraTable Type;
-STRING_CONSTANT( Name, "*" );
+    typedef _QERCameraTable Type;
 
-CameraAPI(){
-       m_camera.m_pfnGetCamera = &QERApp_GetCamera;
-       m_camera.m_pfnSetCamera = &QERApp_SetCamera;
-       m_camera.m_pfnGetCamWindowExtents = &QERApp_GetCamWindowExtents;
-}
-_QERCameraTable* getTable(){
-       return &m_camera;
-}
+    STRING_CONSTANT(Name, "*");
+
+    CameraAPI()
+    {
+        m_camera.m_pfnGetCamera = &QERApp_GetCamera;
+        m_camera.m_pfnSetCamera = &QERApp_SetCamera;
+        m_camera.m_pfnGetCamWindowExtents = &QERApp_GetCamWindowExtents;
+    }
+
+    _QERCameraTable *getTable()
+    {
+        return &m_camera;
+    }
 };
 
 #include "modulesystem/singletonmodule.h"
@@ -82,4 +88,4 @@ _QERCameraTable* getTable(){
 
 typedef SingletonModule<CameraAPI> CameraModule;
 typedef Static<CameraModule> StaticCameraModule;
-StaticRegisterModule staticRegisterCamera( StaticCameraModule::instance() );
+StaticRegisterModule staticRegisterCamera(StaticCameraModule::instance());