You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
(11) |
Apr
(47) |
May
(14) |
Jun
|
Jul
(73) |
Aug
(4) |
Sep
(2) |
Oct
(60) |
Nov
(48) |
Dec
(66) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
(1) |
Mar
(27) |
Apr
(82) |
May
(89) |
Jun
(91) |
Jul
(44) |
Aug
(53) |
Sep
(113) |
Oct
(20) |
Nov
(37) |
Dec
(10) |
2008 |
Jan
|
Feb
(2) |
Mar
|
Apr
(2) |
May
(21) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2009 |
Jan
(76) |
Feb
(89) |
Mar
(52) |
Apr
(11) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(27) |
2010 |
Jan
(11) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(9) |
Sep
|
Oct
|
Nov
|
Dec
(14) |
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(2) |
Sep
(11) |
Oct
(3) |
Nov
|
Dec
|
2013 |
Jan
(4) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <qr...@us...> - 2006-12-13 16:08:31
|
Revision: 307 http://svn.sourceforge.net/opengate/?rev=307&view=rev Author: qrstuvw Date: 2006-12-13 08:01:34 -0800 (Wed, 13 Dec 2006) Log Message: ----------- Makefile.am changed Modified Paths: -------------- trunk/current/src/Makefile.am trunk/current/src/client/Makefile.am Modified: trunk/current/src/Makefile.am =================================================================== --- trunk/current/src/Makefile.am 2006-12-12 16:18:49 UTC (rev 306) +++ trunk/current/src/Makefile.am 2006-12-13 16:01:34 UTC (rev 307) @@ -10,5 +10,4 @@ bin_PROGRAMS = opengate-client opengate_client_SOURCES = Client.cpp opengate_client_LDADD = $(top_builddir)/src/deps/tinyxml/libTinyXML.la \ - $(top_builddir)/src/client/libOpenGateClient.la $(top_builddir)/src/client/state/libStates.la -L/usr/local/lib -lOIS \ - -lOgreMain -lCEGUIOgreRenderer -lCEGUIBase + $(top_builddir)/src/client/libOpenGateClient.la -L/usr/local/lib -lOIS -lOgreMain -lCEGUIOgreRenderer -lCEGUIBase Modified: trunk/current/src/client/Makefile.am =================================================================== --- trunk/current/src/client/Makefile.am 2006-12-12 16:18:49 UTC (rev 306) +++ trunk/current/src/client/Makefile.am 2006-12-13 16:01:34 UTC (rev 307) @@ -7,3 +7,4 @@ lib_LTLIBRARIES = libOpenGateClient.la libOpenGateClient_la_SOURCES = GameStateManager.cpp GraphicsSetup.cpp \ OpenGateApp.cpp IntroState.cpp LoginState.cpp InputManager.cpp + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <qr...@us...> - 2006-12-12 16:18:50
|
Revision: 306 http://svn.sourceforge.net/opengate/?rev=306&view=rev Author: qrstuvw Date: 2006-12-12 08:18:49 -0800 (Tue, 12 Dec 2006) Log Message: ----------- Let there be input (again) Modified Paths: -------------- trunk/current/src/Makefile.am trunk/current/src/client/Global.h trunk/current/src/client/GraphicsSetup.cpp trunk/current/src/client/Makefile.am trunk/current/src/client/OpenGateApp.cpp Added Paths: ----------- trunk/current/src/client/InputManager.cpp trunk/current/src/client/InputManager.h trunk/current/src/client/IntroState.cpp trunk/current/src/client/IntroState.h trunk/current/src/client/LoginListener.h trunk/current/src/client/LoginState.cpp trunk/current/src/client/LoginState.h Modified: trunk/current/src/Makefile.am =================================================================== --- trunk/current/src/Makefile.am 2006-12-12 15:41:21 UTC (rev 305) +++ trunk/current/src/Makefile.am 2006-12-12 16:18:49 UTC (rev 306) @@ -10,4 +10,5 @@ bin_PROGRAMS = opengate-client opengate_client_SOURCES = Client.cpp opengate_client_LDADD = $(top_builddir)/src/deps/tinyxml/libTinyXML.la \ - $(top_builddir)/src/client/state/libStates.la -L/usr/local/lib -lOgreMain -lCEGUIOgreRenderer -lCEGUIBase + $(top_builddir)/src/client/libOpenGateClient.la $(top_builddir)/src/client/state/libStates.la -L/usr/local/lib -lOIS \ + -lOgreMain -lCEGUIOgreRenderer -lCEGUIBase Modified: trunk/current/src/client/Global.h =================================================================== --- trunk/current/src/client/Global.h 2006-12-12 15:41:21 UTC (rev 305) +++ trunk/current/src/client/Global.h 2006-12-12 16:18:49 UTC (rev 306) @@ -22,10 +22,9 @@ #define GLOBAL_H #include <OGRE/Ogre.h> -#include <OIS/OISMouse.h> -#include <OIS/OISKeyboard.h> -#include <OIS/OISJoyStick.h> -#include <OIS/OISInputManager.h> + +#include "InputManager.h" + /** This file eases an issue CEGUI has with OGRE's memory manager. Simply include this in any files that are going to be doing 'CEGUI stuff', rather than CEGUI.h, OgreCEGUIRender.h, OgreCEGUIResourceProvider.h, and OgreCEGUITexture.h (etc). @@ -60,6 +59,7 @@ Ogre::RenderWindow* renderWindow; CEGUI::OgreCEGUIRenderer* GUIRenderer; CEGUI::System* GUISystem; + InputManager *inputMgr; } framework_info; Modified: trunk/current/src/client/GraphicsSetup.cpp =================================================================== --- trunk/current/src/client/GraphicsSetup.cpp 2006-12-12 15:41:21 UTC (rev 305) +++ trunk/current/src/client/GraphicsSetup.cpp 2006-12-12 16:18:49 UTC (rev 306) @@ -39,7 +39,7 @@ // Load the render system (Linux only has OpenGL) mFramework->ogreRoot->loadPlugin("/usr/local/lib/OGRE/RenderSystem_GL.so"); - return false; + // Load engines settings if (!loadEngineSettings(mFramework)) return false; Added: trunk/current/src/client/InputManager.cpp =================================================================== --- trunk/current/src/client/InputManager.cpp (rev 0) +++ trunk/current/src/client/InputManager.cpp 2006-12-12 16:18:49 UTC (rev 306) @@ -0,0 +1,476 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "InputManager.h" + +InputManager *InputManager::mInputManager; + +InputManager::InputManager( void ) : + mMouse( 0 ), + mKeyboard( 0 ), + mInputSystem( 0 ) +{} + +InputManager::~InputManager( void ) +{ + if( mInputSystem ) + { + if( mMouse ) + { + mInputSystem->destroyInputObject( mMouse ); + mMouse = 0; + } + + if( mKeyboard ) + { + mInputSystem->destroyInputObject( mKeyboard ); + mKeyboard = 0; + } + + if( mJoysticks.size() > 0 ) + { + itJoystick = mJoysticks.begin(); + itJoystickEnd = mJoysticks.end(); + for(; itJoystick != itJoystickEnd; ++itJoystick ) + { + mInputSystem->destroyInputObject( *itJoystick ); + } + + mJoysticks.clear(); + } + + mInputSystem->destroyInputSystem(); + mInputSystem = 0; + + // Clear Listeners + mKeyListeners.clear(); + mMouseListeners.clear(); + mJoystickListeners.clear(); + } +} + +void InputManager::initialise( Ogre::RenderWindow *renderWindow ) +{ + if( !mInputSystem ) + { + // Setup basic variables + OIS::ParamList paramList; + size_t windowHnd = 0; + std::ostringstream windowHndStr; + + // Get window handle +#if defined OIS_WIN32_PLATFORM + + renderWindow->getCustomAttribute( "HWND", &windowHnd ); +#elif defined OIS_LINUX_PLATFORM + + renderWindow->getCustomAttribute( "GLXWINDOW", &windowHnd ); +#endif + + // Fill parameter list + windowHndStr << (unsigned int) windowHnd; + paramList.insert( std::make_pair( std::string( "WINDOW" ), windowHndStr.str() ) ); + + // Create inputsystem + mInputSystem = OIS::InputManager::createInputSystem( paramList ); + + // If possible create a buffered keyboard + if( mInputSystem->numKeyBoards() > 0 ) + { + mKeyboard = static_cast<OIS::Keyboard*>( mInputSystem->createInputObject( OIS::OISKeyboard, true ) ); + mKeyboard->setEventCallback( this ); + } + + // If possible create a buffered mouse + if( mInputSystem->numMice() > 0 ) + { + mMouse = static_cast<OIS::Mouse*>( mInputSystem->createInputObject( OIS::OISMouse, true ) ); + mMouse->setEventCallback( this ); + + // Get window size + unsigned int width, height, depth; + int left, top; + renderWindow->getMetrics( width, height, depth, left, top ); + + // Set mouse region + this->setWindowExtents( width, height ); + } + + // If possible create all joysticks in buffered mode + if( mInputSystem->numJoysticks() > 0 ) + { + mJoysticks.resize( mInputSystem->numJoysticks() ); + + itJoystick = mJoysticks.begin(); + itJoystickEnd = mJoysticks.end(); + for(; itJoystick != itJoystickEnd; ++itJoystick ) + { + (*itJoystick) = static_cast<OIS::JoyStick*>( mInputSystem->createInputObject( OIS::OISJoyStick, true ) ); + (*itJoystick)->setEventCallback( this ); + } + } + } +} + +void InputManager::capture( void ) +{ + // Need to capture / update each device every frame + if( mMouse ) + { + mMouse->capture(); + } + + if( mKeyboard ) + { + mKeyboard->capture(); + } + + if( mJoysticks.size() > 0 ) + { + itJoystick = mJoysticks.begin(); + itJoystickEnd = mJoysticks.end(); + for(; itJoystick != itJoystickEnd; ++itJoystick ) + { + (*itJoystick)->capture(); + } + } +} + +void InputManager::addKeyListener( OIS::KeyListener *keyListener, const std::string& instanceName ) +{ + if( mKeyboard ) + { + // Check for duplicate items + itKeyListener = mKeyListeners.find( instanceName ); + if( itKeyListener == mKeyListeners.end() ) + { + mKeyListeners[ instanceName ] = keyListener; + } + else + { + // Duplicate Item + } + } +} + +void InputManager::addMouseListener( OIS::MouseListener *mouseListener, const std::string& instanceName ) +{ + if( mMouse ) + { + // Check for duplicate items + itMouseListener = mMouseListeners.find( instanceName ); + if( itMouseListener == mMouseListeners.end() ) + { + mMouseListeners[ instanceName ] = mouseListener; + } + else + { + // Duplicate Item + } + } +} + +void InputManager::addJoystickListener( OIS::JoyStickListener *joystickListener, const std::string& instanceName ) +{ + if( mJoysticks.size() > 0 ) + { + // Check for duplicate items + itJoystickListener = mJoystickListeners.find( instanceName ); + if( itJoystickListener != mJoystickListeners.end() ) + { + mJoystickListeners[ instanceName ] = joystickListener; + } + else + { + // Duplicate Item + } + } +} + +void InputManager::removeKeyListener( const std::string& instanceName ) +{ + // Check if item exists + itKeyListener = mKeyListeners.find( instanceName ); + if( itKeyListener != mKeyListeners.end() ) + { + mKeyListeners.erase( itKeyListener ); + } + else + { + // Doesn't Exist + } +} + +void InputManager::removeMouseListener( const std::string& instanceName ) +{ + // Check if item exists + itMouseListener = mMouseListeners.find( instanceName ); + if( itMouseListener != mMouseListeners.end() ) + { + mMouseListeners.erase( itMouseListener ); + } + else + { + // Doesn't Exist + } +} + +void InputManager::removeJoystickListener( const std::string& instanceName ) +{ + // Check if item exists + itJoystickListener = mJoystickListeners.find( instanceName ); + if( itJoystickListener != mJoystickListeners.end() ) + { + mJoystickListeners.erase( itJoystickListener ); + } + else + { + // Doesn't Exist + } +} + +void InputManager::removeKeyListener( OIS::KeyListener *keyListener ) +{ + itKeyListener = mKeyListeners.begin(); + itKeyListenerEnd = mKeyListeners.end(); + for(; itKeyListener != itKeyListenerEnd; ++itKeyListener ) + { + if( itKeyListener->second == keyListener ) + { + mKeyListeners.erase( itKeyListener ); + break; + } + } +} + +void InputManager::removeMouseListener( OIS::MouseListener *mouseListener ) +{ + itMouseListener = mMouseListeners.begin(); + itMouseListenerEnd = mMouseListeners.end(); + for(; itMouseListener != itMouseListenerEnd; ++itMouseListener ) + { + if( itMouseListener->second == mouseListener ) + { + mMouseListeners.erase( itMouseListener ); + break; + } + } +} + +void InputManager::removeJoystickListener( OIS::JoyStickListener *joystickListener ) +{ + itJoystickListener = mJoystickListeners.begin(); + itJoystickListenerEnd = mJoystickListeners.end(); + for(; itJoystickListener != itJoystickListenerEnd; ++itJoystickListener ) + { + if( itJoystickListener->second == joystickListener ) + { + mJoystickListeners.erase( itJoystickListener ); + break; + } + } +} + +void InputManager::removeAllListeners( void ) +{ + mKeyListeners.clear(); + mMouseListeners.clear(); + mJoystickListeners.clear(); +} + +void InputManager::removeAllKeyListeners( void ) +{ + mKeyListeners.clear(); +} + +void InputManager::removeAllMouseListeners( void ) +{ + mMouseListeners.clear(); +} + +void InputManager::removeAllJoystickListeners( void ) +{ + mJoystickListeners.clear(); +} + +void InputManager::setWindowExtents( int width, int height ) +{ + // Set mouse region (if window resizes, we should alter this to reflect as well) + const OIS::MouseState &mouseState = mMouse->getMouseState(); + mouseState.width = width; + mouseState.height = height; +} + +OIS::Mouse* InputManager::getMouse( void ) +{ + return mMouse; +} + +OIS::Keyboard* InputManager::getKeyboard( void ) +{ + return mKeyboard; +} + +OIS::JoyStick* InputManager::getJoystick( unsigned int index ) +{ + // Make sure it's a valid index + if( index < mJoysticks.size() ) + { + return mJoysticks[ index ]; + } + + return 0; +} + +int InputManager::getNumOfJoysticks( void ) +{ + // Cast to keep compiler happy ^^ + return (int) mJoysticks.size(); +} + +bool InputManager::keyPressed( const OIS::KeyEvent &e ) +{ + itKeyListener = mKeyListeners.begin(); + itKeyListenerEnd = mKeyListeners.end(); + for(; itKeyListener != itKeyListenerEnd; ++itKeyListener ) + { + itKeyListener->second->keyPressed( e ); + } + + return true; +} + +bool InputManager::keyReleased( const OIS::KeyEvent &e ) +{ + itKeyListener = mKeyListeners.begin(); + itKeyListenerEnd = mKeyListeners.end(); + for(; itKeyListener != itKeyListenerEnd; ++itKeyListener ) + { + itKeyListener->second->keyReleased( e ); + } + + return true; +} + +bool InputManager::mouseMoved( const OIS::MouseEvent &e ) +{ + itMouseListener = mMouseListeners.begin(); + itMouseListenerEnd = mMouseListeners.end(); + for(; itMouseListener != itMouseListenerEnd; ++itMouseListener ) + { + itMouseListener->second->mouseMoved( e ); + } + + return true; +} + +bool InputManager::mousePressed( const OIS::MouseEvent &e, OIS::MouseButtonID id ) +{ + itMouseListener = mMouseListeners.begin(); + itMouseListenerEnd = mMouseListeners.end(); + for(; itMouseListener != itMouseListenerEnd; ++itMouseListener ) + { + itMouseListener->second->mousePressed( e, id ); + } + + return true; +} + +bool InputManager::mouseReleased( const OIS::MouseEvent &e, OIS::MouseButtonID id ) +{ + itMouseListener = mMouseListeners.begin(); + itMouseListenerEnd = mMouseListeners.end(); + for(; itMouseListener != itMouseListenerEnd; ++itMouseListener ) + { + itMouseListener->second->mouseReleased( e, id ); + } + + return true; +} + +bool InputManager::povMoved( const OIS::JoyStickEvent &e, int pov ) +{ + itJoystickListener = mJoystickListeners.begin(); + itJoystickListenerEnd = mJoystickListeners.end(); + for(; itJoystickListener != itJoystickListenerEnd; ++itJoystickListener ) + { + itJoystickListener->second->povMoved( e, pov ); + } + + return true; +} + +bool InputManager::axisMoved( const OIS::JoyStickEvent &e, int axis ) +{ + itJoystickListener = mJoystickListeners.begin(); + itJoystickListenerEnd = mJoystickListeners.end(); + for(; itJoystickListener != itJoystickListenerEnd; ++itJoystickListener ) + { + itJoystickListener->second->axisMoved( e, axis ); + } + + return true; +} + +bool InputManager::sliderMoved( const OIS::JoyStickEvent &e, int sliderID ) +{ + itJoystickListener = mJoystickListeners.begin(); + itJoystickListenerEnd = mJoystickListeners.end(); + for(; itJoystickListener != itJoystickListenerEnd; ++itJoystickListener ) + { + itJoystickListener->second->sliderMoved( e, sliderID ); + } + + return true; +} + +bool InputManager::buttonPressed( const OIS::JoyStickEvent &e, int button ) +{ + itJoystickListener = mJoystickListeners.begin(); + itJoystickListenerEnd = mJoystickListeners.end(); + for(; itJoystickListener != itJoystickListenerEnd; ++itJoystickListener ) + { + itJoystickListener->second->buttonPressed( e, button ); + } + + return true; +} + +bool InputManager::buttonReleased( const OIS::JoyStickEvent &e, int button ) +{ + itJoystickListener = mJoystickListeners.begin(); + itJoystickListenerEnd = mJoystickListeners.end(); + for(; itJoystickListener != itJoystickListenerEnd; ++itJoystickListener ) + { + itJoystickListener->second->buttonReleased( e, button ); + } + + return true; +} + +InputManager* InputManager::getSingletonPtr( void ) +{ + if( !mInputManager ) + { + mInputManager = new InputManager(); + } + + return mInputManager; +} Property changes on: trunk/current/src/client/InputManager.cpp ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/InputManager.h =================================================================== --- trunk/current/src/client/InputManager.h (rev 0) +++ trunk/current/src/client/InputManager.h 2006-12-12 16:18:49 UTC (rev 306) @@ -0,0 +1,110 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + + +#ifndef INPUTMANAGER_H +#define INPUTMANAGER_H + +#include <OIS/OISMouse.h> +#include <OIS/OISKeyboard.h> +#include <OIS/OISJoyStick.h> +#include <OIS/OISInputManager.h> + +#include <OGRE/OgreRenderWindow.h> + +/** Basic Global Input */ +class InputManager : public OIS::KeyListener, OIS::MouseListener, OIS::JoyStickListener + { + public: + virtual ~InputManager( void ); + + void initialise( Ogre::RenderWindow *renderWindow ); + void capture( void ); + + void addKeyListener( OIS::KeyListener *keyListener, const std::string& instanceName ); + void addMouseListener( OIS::MouseListener *mouseListener, const std::string& instanceName ); + void addJoystickListener( OIS::JoyStickListener *joystickListener, const std::string& instanceName ); + + void removeKeyListener( const std::string& instanceName ); + void removeMouseListener( const std::string& instanceName ); + void removeJoystickListener( const std::string& instanceName ); + + void removeKeyListener( OIS::KeyListener *keyListener ); + void removeMouseListener( OIS::MouseListener *mouseListener ); + void removeJoystickListener( OIS::JoyStickListener *joystickListener ); + + void removeAllListeners( void ); + void removeAllKeyListeners( void ); + void removeAllMouseListeners( void ); + void removeAllJoystickListeners( void ); + + void setWindowExtents( int width, int height ); + + OIS::Mouse* getMouse( void ); + OIS::Keyboard* getKeyboard( void ); + OIS::JoyStick* getJoystick( unsigned int index ); + + int getNumOfJoysticks( void ); + + static InputManager* getSingletonPtr( void ); + + OIS::InputManager *mInputSystem; + OIS::Mouse *mMouse; + OIS::Keyboard *mKeyboard; + + std::vector<OIS::JoyStick*> mJoysticks; + std::vector<OIS::JoyStick*>::iterator itJoystick; + std::vector<OIS::JoyStick*>::iterator itJoystickEnd; + + private: + InputManager( void ); + InputManager( const InputManager& ) + { } + InputManager & operator = ( const InputManager& ); + + bool keyPressed( const OIS::KeyEvent &e ); + bool keyReleased( const OIS::KeyEvent &e ); + + bool mouseMoved( const OIS::MouseEvent &e ); + bool mousePressed( const OIS::MouseEvent &e, OIS::MouseButtonID id ); + bool mouseReleased( const OIS::MouseEvent &e, OIS::MouseButtonID id ); + + bool povMoved( const OIS::JoyStickEvent &e, int pov ); + bool axisMoved( const OIS::JoyStickEvent &e, int axis ); + bool sliderMoved( const OIS::JoyStickEvent &e, int sliderID ); + bool buttonPressed( const OIS::JoyStickEvent &e, int button ); + bool buttonReleased( const OIS::JoyStickEvent &e, int button ); + + std::map<std::string, OIS::KeyListener*> mKeyListeners; + std::map<std::string, OIS::MouseListener*> mMouseListeners; + std::map<std::string, OIS::JoyStickListener*> mJoystickListeners; + + std::map<std::string, OIS::KeyListener*>::iterator itKeyListener; + std::map<std::string, OIS::MouseListener*>::iterator itMouseListener; + std::map<std::string, OIS::JoyStickListener*>::iterator itJoystickListener; + + std::map<std::string, OIS::KeyListener*>::iterator itKeyListenerEnd; + std::map<std::string, OIS::MouseListener*>::iterator itMouseListenerEnd; + std::map<std::string, OIS::JoyStickListener*>::iterator itJoystickListenerEnd; + + static InputManager *mInputManager; + }; + +#endif Property changes on: trunk/current/src/client/InputManager.h ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/IntroState.cpp =================================================================== --- trunk/current/src/client/IntroState.cpp (rev 0) +++ trunk/current/src/client/IntroState.cpp 2006-12-12 16:18:49 UTC (rev 306) @@ -0,0 +1,31 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "IntroState.h" + +//--------------------------------------------------------------------------------// +/** Game state enter code. */ +void IntroState::enter() +{} + +//--------------------------------------------------------------------------------// +/** Game state exit code. */ +void IntroState::exit() +{} Property changes on: trunk/current/src/client/IntroState.cpp ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/IntroState.h =================================================================== --- trunk/current/src/client/IntroState.h (rev 0) +++ trunk/current/src/client/IntroState.h 2006-12-12 16:18:49 UTC (rev 306) @@ -0,0 +1,59 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + + +#ifndef INTROSTATE_H +#define INTROSTATE_H + +#include "GameState.h" + +class IntroState : public GameState + { + // Self-creation & registering function ---------------------------------------------------- + public: + /** Create and register the state so that it can be managed by the GameStateManager. */ + static void Create(GameStateListener *parent,const Ogre::String name) + { + IntroState *myGameState = new IntroState(); + myGameState->parent = parent; + parent->ManageGameState(name,myGameState); + } + + // Attributes ------------------------------------------------------------------------------ + + // Methods --------------------------------------------------------------------------------- + public: + /** Default constructor. */ + IntroState() + {} + + /** Default destructor. */ + ~IntroState() + {} + + /** Game state enter code. */ + void enter(); + + /** Game state exit code. */ + void exit(); + + }; + +#endif Property changes on: trunk/current/src/client/IntroState.h ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/LoginListener.h =================================================================== Property changes on: trunk/current/src/client/LoginListener.h ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/LoginState.cpp =================================================================== --- trunk/current/src/client/LoginState.cpp (rev 0) +++ trunk/current/src/client/LoginState.cpp 2006-12-12 16:18:49 UTC (rev 306) @@ -0,0 +1,19 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ Property changes on: trunk/current/src/client/LoginState.cpp ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/LoginState.h =================================================================== --- trunk/current/src/client/LoginState.h (rev 0) +++ trunk/current/src/client/LoginState.h 2006-12-12 16:18:49 UTC (rev 306) @@ -0,0 +1,59 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef LOGINSTATE_H +#define LOGINSTATE_H + +#include "GameState.h" +#include "LoginListener.h" + +class IntroState : public GameState + { + // Self-creation & registering function ---------------------------------------------------- + public: + /** Create and register the state so that it can be managed by the GameStateManager. */ + static void Create(GameStateListener *parent,const Ogre::String name) + { + IntroState *myGameState = new IntroState(); + myGameState->parent = parent; + parent->ManageGameState(name,myGameState); + } + + // Attributes ------------------------------------------------------------------------------ + + // Methods --------------------------------------------------------------------------------- + public: + /** Default constructor. */ + IntroState() + {} + + /** Default destructor. */ + ~IntroState() + {} + + /** Game state enter code. */ + void enter(); + + /** Game state exit code. */ + void exit(); + + }; + +#endif \ No newline at end of file Property changes on: trunk/current/src/client/LoginState.h ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Modified: trunk/current/src/client/Makefile.am =================================================================== --- trunk/current/src/client/Makefile.am 2006-12-12 15:41:21 UTC (rev 305) +++ trunk/current/src/client/Makefile.am 2006-12-12 16:18:49 UTC (rev 306) @@ -3,7 +3,7 @@ METASOURCES = AUTO noinst_HEADERS = GameStateManager.h GameState.h Global.h OpenGateApp.h \ - GraphicsSetup.h IntroState.h LoginListener.h LoginState.h + GraphicsSetup.h IntroState.h LoginListener.h LoginState.h InputManager.h lib_LTLIBRARIES = libOpenGateClient.la libOpenGateClient_la_SOURCES = GameStateManager.cpp GraphicsSetup.cpp \ - OpenGateApp.cpp IntroState.cpp LoginState.cpp + OpenGateApp.cpp IntroState.cpp LoginState.cpp InputManager.cpp Modified: trunk/current/src/client/OpenGateApp.cpp =================================================================== --- trunk/current/src/client/OpenGateApp.cpp 2006-12-12 15:41:21 UTC (rev 305) +++ trunk/current/src/client/OpenGateApp.cpp 2006-12-12 16:18:49 UTC (rev 306) @@ -28,7 +28,16 @@ //--------------------------------------------------------------------------------// /** Default constructor. */ OpenGateApp::OpenGateApp() -{} +{ + mFramework.ogreRoot = 0; + mFramework.sceneMgr = 0; + mFramework.camera = 0; + mFramework.viewport = 0; + mFramework.renderWindow = 0; + mFramework.GUIRenderer = 0; + mFramework.GUISystem = 0; + mFramework.inputMgr = 0; +} //--------------------------------------------------------------------------------// /** Default destructor. */ @@ -43,6 +52,10 @@ if (!initGraphics(&mFramework)) return; + // Start the input manager + mFramework.inputMgr = InputManager::getSingletonPtr(); + mFramework.inputMgr->initialise(mFramework.renderWindow); + /** Create the GameStateManager and register the game states. */ // Create the gamestate manager GameStateManager GameStateMgr(&mFramework); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <qr...@us...> - 2006-12-12 15:41:23
|
Revision: 305 http://svn.sourceforge.net/opengate/?rev=305&view=rev Author: qrstuvw Date: 2006-12-12 07:41:21 -0800 (Tue, 12 Dec 2006) Log Message: ----------- Some adjustments to allow for canonical naming of libraries Modified Paths: -------------- trunk/current/configure.in trunk/current/opengate.kdevelop trunk/current/src/Makefile.am trunk/current/src/client/GraphicsSetup.cpp trunk/current/src/client/Makefile.am trunk/current/src/client/OpenGateApp.cpp Removed Paths: ------------- trunk/current/src/client/logic/ trunk/current/src/client/state/ Modified: trunk/current/configure.in =================================================================== --- trunk/current/configure.in 2006-12-12 13:00:08 UTC (rev 304) +++ trunk/current/configure.in 2006-12-12 15:41:21 UTC (rev 305) @@ -7,4 +7,4 @@ AC_PROG_CXX AM_PROG_LIBTOOL -AC_OUTPUT(Makefile src/Makefile src/client/Makefile src/common/Makefile src/deps/Makefile src/server/Makefile src/client/logic/Makefile src/client/state/Makefile src/deps/tinyxml/Makefile) +AC_OUTPUT(Makefile src/Makefile src/client/Makefile src/common/Makefile src/deps/Makefile src/server/Makefile src/deps/tinyxml/Makefile) Modified: trunk/current/opengate.kdevelop =================================================================== --- trunk/current/opengate.kdevelop 2006-12-12 13:00:08 UTC (rev 304) +++ trunk/current/opengate.kdevelop 2006-12-12 15:41:21 UTC (rev 305) @@ -13,24 +13,24 @@ <ignoreparts/> <projectdirectory>.</projectdirectory> <absoluteprojectpath>false</absoluteprojectpath> - <description></description> - <versioncontrol></versioncontrol> + <description/> + <versioncontrol/> </general> <kdevautoproject> <general> - <activetarget>src/opengate</activetarget> - <useconfiguration>debug</useconfiguration> + <activetarget>src/client/libOpenGateClient.la</activetarget> + <useconfiguration>optimized</useconfiguration> </general> <run> - <mainprogram></mainprogram> + <mainprogram/> <terminal>true</terminal> <directoryradio>build</directoryradio> <customdirectory>/</customdirectory> - <programargs></programargs> + <programargs/> <autocompile>true</autocompile> <envvars/> <runarguments> - <opengate-client></opengate-client> + <opengate-client/> </runarguments> </run> <configurations> @@ -60,7 +60,7 @@ <runmultiplejobs>false</runmultiplejobs> <numberofjobs>1</numberofjobs> <dontact>false</dontact> - <makebin></makebin> + <makebin/> <prio>0</prio> </make> </kdevautoproject> @@ -133,7 +133,7 @@ <projectdoc> <docsystem>Doxygen Documentation Collection</docsystem> <docurl>opengate.tag</docurl> - <usermanualurl></usermanualurl> + <usermanualurl/> </projectdoc> </kdevdocumentation> <substmap> @@ -169,7 +169,7 @@ <root>/usr/lib/qt-3.3</root> </qt> <creategettersetter> - <prefixGet></prefixGet> + <prefixGet/> <prefixSet>set</prefixSet> <prefixVariable>m_,_</prefixVariable> <parameterName>theValue</parameterName> @@ -185,12 +185,12 @@ </cppsupportpart> <kdevdebugger> <general> - <programargs></programargs> - <gdbpath></gdbpath> - <dbgshell></dbgshell> - <configGdbScript></configGdbScript> - <runShellScript></runShellScript> - <runGdbScript></runGdbScript> + <programargs/> + <gdbpath/> + <dbgshell/> + <configGdbScript/> + <runShellScript/> + <runGdbScript/> <breakonloadinglibs>true</breakonloadinglibs> <separatetty>false</separatetty> <floatingtoolbar>false</floatingtoolbar> Modified: trunk/current/src/Makefile.am =================================================================== --- trunk/current/src/Makefile.am 2006-12-12 13:00:08 UTC (rev 304) +++ trunk/current/src/Makefile.am 2006-12-12 15:41:21 UTC (rev 305) @@ -10,5 +10,4 @@ bin_PROGRAMS = opengate-client opengate_client_SOURCES = Client.cpp opengate_client_LDADD = $(top_builddir)/src/deps/tinyxml/libTinyXML.la \ - $(top_builddir)/src/client/state/libStates.la $(top_builddir)/src/client/libClient.la -L/usr/local/lib -lOgreMain \ - -lCEGUIOgreRenderer -lCEGUIBase + $(top_builddir)/src/client/state/libStates.la -L/usr/local/lib -lOgreMain -lCEGUIOgreRenderer -lCEGUIBase Modified: trunk/current/src/client/GraphicsSetup.cpp =================================================================== --- trunk/current/src/client/GraphicsSetup.cpp 2006-12-12 13:00:08 UTC (rev 304) +++ trunk/current/src/client/GraphicsSetup.cpp 2006-12-12 15:41:21 UTC (rev 305) @@ -39,20 +39,15 @@ // Load the render system (Linux only has OpenGL) mFramework->ogreRoot->loadPlugin("/usr/local/lib/OGRE/RenderSystem_GL.so"); - + return false; // Load engines settings if (!loadEngineSettings(mFramework)) - { - // Create the Graphics.xml file using default options - if (!saveEngineSettings(mFramework)) - return false; - if (!loadEngineSettings(mFramework)) - return false; - } + return false; + // Write all the currently available settings as comment - //if (!saveEngineSettings(mFramework)) - // return false; + if (!saveEngineSettings(mFramework)) + return false; // Load all resources from XML if (!setupResources()) Modified: trunk/current/src/client/Makefile.am =================================================================== --- trunk/current/src/client/Makefile.am 2006-12-12 13:00:08 UTC (rev 304) +++ trunk/current/src/client/Makefile.am 2006-12-12 15:41:21 UTC (rev 305) @@ -1,8 +1,9 @@ -INCLUDES = -I$(top_srcdir)/src/client -I$(top_srcdir)/src/deps \ - -I/usr/local/include/CEGUI -I/usr/local/include/OGRE $(all_includes) +INCLUDES = -I$(top_srcdir)/src/deps -I/usr/local/include/CEGUI \ + -I/usr/local/include/OGRE $(all_includes) METASOURCES = AUTO -SUBDIRS = logic state -lib_LTLIBRARIES = libClient.la -libClient_la_SOURCES = GameStateManager.cpp GraphicsSetup.cpp OpenGateApp.cpp + noinst_HEADERS = GameStateManager.h GameState.h Global.h OpenGateApp.h \ - GraphicsSetup.h + GraphicsSetup.h IntroState.h LoginListener.h LoginState.h +lib_LTLIBRARIES = libOpenGateClient.la +libOpenGateClient_la_SOURCES = GameStateManager.cpp GraphicsSetup.cpp \ + OpenGateApp.cpp IntroState.cpp LoginState.cpp Modified: trunk/current/src/client/OpenGateApp.cpp =================================================================== --- trunk/current/src/client/OpenGateApp.cpp 2006-12-12 13:00:08 UTC (rev 304) +++ trunk/current/src/client/OpenGateApp.cpp 2006-12-12 15:41:21 UTC (rev 305) @@ -23,7 +23,7 @@ #include "GameStateManager.h" // Game states -#include "state/IntroState.h" +#include "IntroState.h" //--------------------------------------------------------------------------------// /** Default constructor. */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ult...@us...> - 2006-12-12 13:00:09
|
Revision: 304 http://svn.sourceforge.net/opengate/?rev=304&view=rev Author: ultrasick Date: 2006-12-12 05:00:08 -0800 (Tue, 12 Dec 2006) Log Message: ----------- uploaded some textures of the 3d models Added Paths: ----------- branches/old/templates/data/commodities/ branches/old/templates/data/commodities/conflux_biomass/ branches/old/templates/data/commodities/conflux_biomass/Rost.png branches/old/templates/data/commodities/conflux_biomass/Stahl.png branches/old/templates/data/commodities/manufactured_food/ branches/old/templates/data/commodities/manufactured_food/front.pspimage branches/old/templates/data/commodities/manufactured_food/picture_blueberry.png branches/old/templates/data/commodities/manufactured_food/picture_strawberry.png branches/old/templates/data/commodities/manufactured_food/side_blue.png branches/old/templates/data/commodities/manufactured_food/side_red.png branches/old/templates/data/commodities/manufactured_food/structur.png branches/old/templates/data/commodities/manufactured_food/structur_blueberry.png branches/old/templates/data/commodities/manufactured_food/structur_strawberre.png branches/old/templates/data/commodities/manufactured_food/top.png Added: branches/old/templates/data/commodities/conflux_biomass/Rost.png =================================================================== (Binary files differ) Property changes on: branches/old/templates/data/commodities/conflux_biomass/Rost.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: branches/old/templates/data/commodities/conflux_biomass/Stahl.png =================================================================== (Binary files differ) Property changes on: branches/old/templates/data/commodities/conflux_biomass/Stahl.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: branches/old/templates/data/commodities/manufactured_food/front.pspimage =================================================================== (Binary files differ) Property changes on: branches/old/templates/data/commodities/manufactured_food/front.pspimage ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: branches/old/templates/data/commodities/manufactured_food/picture_blueberry.png =================================================================== (Binary files differ) Property changes on: branches/old/templates/data/commodities/manufactured_food/picture_blueberry.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: branches/old/templates/data/commodities/manufactured_food/picture_strawberry.png =================================================================== (Binary files differ) Property changes on: branches/old/templates/data/commodities/manufactured_food/picture_strawberry.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: branches/old/templates/data/commodities/manufactured_food/side_blue.png =================================================================== (Binary files differ) Property changes on: branches/old/templates/data/commodities/manufactured_food/side_blue.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: branches/old/templates/data/commodities/manufactured_food/side_red.png =================================================================== (Binary files differ) Property changes on: branches/old/templates/data/commodities/manufactured_food/side_red.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: branches/old/templates/data/commodities/manufactured_food/structur.png =================================================================== (Binary files differ) Property changes on: branches/old/templates/data/commodities/manufactured_food/structur.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: branches/old/templates/data/commodities/manufactured_food/structur_blueberry.png =================================================================== (Binary files differ) Property changes on: branches/old/templates/data/commodities/manufactured_food/structur_blueberry.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: branches/old/templates/data/commodities/manufactured_food/structur_strawberre.png =================================================================== (Binary files differ) Property changes on: branches/old/templates/data/commodities/manufactured_food/structur_strawberre.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: branches/old/templates/data/commodities/manufactured_food/top.png =================================================================== (Binary files differ) Property changes on: branches/old/templates/data/commodities/manufactured_food/top.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <eg...@us...> - 2006-12-12 00:05:28
|
Revision: 303 http://svn.sourceforge.net/opengate/?rev=303&view=rev Author: egore Date: 2006-12-11 16:05:26 -0800 (Mon, 11 Dec 2006) Log Message: ----------- Add model an description for Outlook Added Paths: ----------- trunk/data/radar/ trunk/data/radar/outlook.blend trunk/data/radar/outlook.xml Added: trunk/data/radar/outlook.blend =================================================================== (Binary files differ) Property changes on: trunk/data/radar/outlook.blend ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/radar/outlook.xml =================================================================== (Binary files differ) Property changes on: trunk/data/radar/outlook.xml ___________________________________________________________________ Name: svn:mime-type + application/xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <qr...@us...> - 2006-12-10 16:17:26
|
Revision: 302 http://svn.sourceforge.net/opengate/?rev=302&view=rev Author: qrstuvw Date: 2006-12-10 08:17:27 -0800 (Sun, 10 Dec 2006) Log Message: ----------- Dunno whats changed Modified Paths: -------------- trunk/current/src/client/GraphicsSetup.cpp Modified: trunk/current/src/client/GraphicsSetup.cpp =================================================================== --- trunk/current/src/client/GraphicsSetup.cpp 2006-12-10 16:16:24 UTC (rev 301) +++ trunk/current/src/client/GraphicsSetup.cpp 2006-12-10 16:17:27 UTC (rev 302) @@ -116,7 +116,7 @@ std::string s; TiXmlElement* _option; TiXmlDocument doc; - TiXmlDeclaration* _decl = new TiXmlDeclaration( "1.0", "UTF-8", "No" ); + TiXmlDeclaration* _decl = new TiXmlDeclaration( "1.0", "UTF-8", "yes" ); doc.LinkEndChild( _decl ); TiXmlElement* _root = new TiXmlElement( "OpenGate" ); doc.LinkEndChild( _root ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <qr...@us...> - 2006-12-10 16:16:25
|
Revision: 301 http://svn.sourceforge.net/opengate/?rev=301&view=rev Author: qrstuvw Date: 2006-12-10 08:16:24 -0800 (Sun, 10 Dec 2006) Log Message: ----------- Current client data Added Paths: ----------- trunk/data/client/ trunk/data/client/Graphics.xml trunk/data/client/Resources.xml trunk/data/client/data1.x/ trunk/data/client/data1.x/GUI/ trunk/data/client/data1.x/GUI/BlueHighway-10.font trunk/data/client/data1.x/GUI/BlueHighway-12.font trunk/data/client/data1.x/GUI/BlueHighway.ttf trunk/data/client/data1.x/GUI/OpenGate.looknfeel trunk/data/client/data1.x/GUI/OpenGateLook.imageset trunk/data/client/data1.x/GUI/OpenGateLook.scheme trunk/data/client/data1.x/GUI/OpenGateLook.tga trunk/data/client/data1.x/GUI/OpenGateLook.xcf trunk/data/client/data1.x/Materials/ Added: trunk/data/client/Graphics.xml =================================================================== --- trunk/data/client/Graphics.xml (rev 0) +++ trunk/data/client/Graphics.xml 2006-12-10 16:16:24 UTC (rev 301) @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<OpenGate> + <!-- Automatically (re-)generated --> + <!-- Let's judge him by what he does next... --> + <Subsystem> + <Option name="Rendering Subsystem" value="OpenGL Rendering Subsystem" /> + <!-- OpenGL Rendering Subsystem --> + </Subsystem> + <Graphics> + <Option name="FSAA" value="0" /> + <!-- 0 2 4 6 --> + <Option name="Full Screen" value="No" /> + <!-- Yes No --> + <Option name="RTT Preferred Mode" value="FBO" /> + <!-- FBO PBuffer Copy --> + <Option name="Video Mode" value="800 x 600" /> + <!-- 640 x 480 800 x 600 1024 x 768 1280 x 960 1280 x 1024 1600 x 1200 --> + </Graphics> +</OpenGate> Property changes on: trunk/data/client/Graphics.xml ___________________________________________________________________ Name: svn:mime-type + text/xml Name: svn:eol-style + native Added: trunk/data/client/Resources.xml =================================================================== --- trunk/data/client/Resources.xml (rev 0) +++ trunk/data/client/Resources.xml 2006-12-10 16:16:24 UTC (rev 301) @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<OpenGate> + <Resources> + <Group name="GUI"> + <Resource type="FileSystem" location="./data1.x/GUI"/> + <Resource type="FileSystem" location="./data1.x/Materials"/> + <Resource type="Zip" location="./data1.x/Materials/skybox.zip"/> + </Group> + <Group name="General"> + </Group> + </Resources> +</OpenGate> Property changes on: trunk/data/client/Resources.xml ___________________________________________________________________ Name: svn:mime-type + text/xml Name: svn:eol-style + native Added: trunk/data/client/data1.x/GUI/BlueHighway-10.font =================================================================== --- trunk/data/client/data1.x/GUI/BlueHighway-10.font (rev 0) +++ trunk/data/client/data1.x/GUI/BlueHighway-10.font 2006-12-10 16:16:24 UTC (rev 301) @@ -0,0 +1,2 @@ +<?xml version="1.0" ?> +<Font Name="BlueHighway-10" Filename="BlueHighway.ttf" Type="Dynamic" Size="10" NativeHorzRes="800" NativeVertRes="600" AutoScaled="false" AntiAlias="true" /> Property changes on: trunk/data/client/data1.x/GUI/BlueHighway-10.font ___________________________________________________________________ Name: svn:mime-type + text/xml Name: svn:eol-style + native Added: trunk/data/client/data1.x/GUI/BlueHighway-12.font =================================================================== --- trunk/data/client/data1.x/GUI/BlueHighway-12.font (rev 0) +++ trunk/data/client/data1.x/GUI/BlueHighway-12.font 2006-12-10 16:16:24 UTC (rev 301) @@ -0,0 +1,2 @@ +<?xml version="1.0" ?> +<Font Name="BlueHighway-12" Filename="BlueHighway.ttf" Type="Dynamic" Size="12" NativeHorzRes="800" NativeVertRes="600" AutoScaled="false" AntiAlias="true" /> Property changes on: trunk/data/client/data1.x/GUI/BlueHighway-12.font ___________________________________________________________________ Name: svn:mime-type + text/xml Name: svn:eol-style + native Added: trunk/data/client/data1.x/GUI/BlueHighway.ttf =================================================================== (Binary files differ) Property changes on: trunk/data/client/data1.x/GUI/BlueHighway.ttf ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/client/data1.x/GUI/OpenGate.looknfeel =================================================================== --- trunk/data/client/data1.x/GUI/OpenGate.looknfeel (rev 0) +++ trunk/data/client/data1.x/GUI/OpenGate.looknfeel 2006-12-10 16:16:24 UTC (rev 301) @@ -0,0 +1,1547 @@ +<?xml version="1.0" ?> +<Falagard> + <!-- OpenGate UI Panels --> + <WidgetLook name="OpenGateLook/OGUIPanels"> + <Property name="FrameEnabled" value="True" /> + <Property name="BackgroundEnabled" value="False" /> + <NamedArea name="WithFrameImageRenderArea"> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + </NamedArea> + <NamedArea name="NoFrameImageRenderArea"> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + </NamedArea> + <ImagerySection name="frame"> + <FrameComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + <Image type="BottomLeftCorner" imageset="OpenGateLook" image="OGUIPanelLeft" /> + <Image type="BottomRightCorner" imageset="OpenGateLook" image="OGUIPanelRight" /> + </FrameComponent> + </ImagerySection> + <ImagerySection name="background"> + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + <VertFormat type="Tiled" /> + <HorzFormat type="Tiled" /> + </ImageryComponent> + </ImagerySection> + <StateImagery name="Enabled" /> + <StateImagery name="Disabled" /> + <StateImagery name="EnabledFrame"> + <Layer> + <Section section="frame" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledFrame"> + <Layer> + <Section section="frame" /> + </Layer> + </StateImagery> + <StateImagery name="EnabledBackground"> + <Layer> + <Section section="background" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledBackground"> + <Layer> + <Section section="background" /> + </Layer> + </StateImagery> + </WidgetLook> + + <!-- OpenGate Shield progress bar --> + <WidgetLook name="OpenGateLook/OGProgressBarShield"> + <NamedArea name="ProgressArea"> + <Area> + <Dim type="LeftEdge" > + <UnifiedDim scale="1" type="Width"> + <DimOperator op="Subtract"> + <AbsoluteDim value="166"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarShieldFull" dimension="Width" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="76"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarShieldFull" dimension="Height" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><ImageDim imageset="OpenGateLook" image="OGProgressBarShieldFull" dimension="Width" /></Dim> + <Dim type="Height" ><ImageDim imageset="OpenGateLook" image="OGProgressBarShieldFull" dimension="Height" /></Dim> + </Area> + </NamedArea> + <ImagerySection name="frame"> + <FrameComponent> + <Area> + <Dim type="LeftEdge" > + <UnifiedDim scale="1" type="Width"> + <DimOperator op="Subtract"> + <AbsoluteDim value="166"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarShieldEmpty" dimension="Width" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="76"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarShieldEmpty" dimension="Height" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><ImageDim imageset="OpenGateLook" image="OGProgressBarShieldEmpty" dimension="Width" /></Dim> + <Dim type="Height" ><ImageDim imageset="OpenGateLook" image="OGProgressBarShieldEmpty" dimension="Height" /></Dim> + </Area> + <Image type="Background" imageset="OpenGateLook" image="OGProgressBarShieldEmpty" /> + </FrameComponent> + </ImagerySection> + <ImagerySection name="progress_lights" > + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGProgressBarShieldFull" /> + <VertFormat type="Stretched" /> + <HorzFormat type="Tiled" /> + </ImageryComponent> + </ImagerySection> + <StateImagery name="Enabled"> + <Layer> + <Section section="frame" /> + </Layer> + </StateImagery> + <StateImagery name="Disabled"> + <Layer> + <Section section="frame"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="EnabledProgress"> + <Layer> + <Section section="progress_lights" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledProgress"> + <Layer> + <Section section="progress_lights"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + </WidgetLook> + + <!-- OpenGate Energy progress bar --> + <WidgetLook name="OpenGateLook/OGProgressBarEnergy"> + <NamedArea name="ProgressArea"> + <Area> + <Dim type="LeftEdge" > + <UnifiedDim scale="1" type="Width"> + <DimOperator op="Subtract"> + <AbsoluteDim value="166"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarEnergyFull" dimension="Width" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="52"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarEnergyFull" dimension="Height" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><ImageDim imageset="OpenGateLook" image="OGProgressBarEnergyFull" dimension="Width" /></Dim> + <Dim type="Height" ><ImageDim imageset="OpenGateLook" image="OGProgressBarEnergyFull" dimension="Height" /></Dim> + </Area> + </NamedArea> + <ImagerySection name="frame"> + <FrameComponent> + <Area> + <Dim type="LeftEdge" > + <UnifiedDim scale="1" type="Width"> + <DimOperator op="Subtract"> + <AbsoluteDim value="166"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarEnergyEmpty" dimension="Width" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="52"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarEnergyEmpty" dimension="Height" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><ImageDim imageset="OpenGateLook" image="OGProgressBarEnergyEmpty" dimension="Width" /></Dim> + <Dim type="Height" ><ImageDim imageset="OpenGateLook" image="OGProgressBarEnergyEmpty" dimension="Height" /></Dim> + </Area> + <Image type="Background" imageset="OpenGateLook" image="OGProgressBarEnergyEmpty" /> + </FrameComponent> + </ImagerySection> + <ImagerySection name="progress_lights" > + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGProgressBarEnergyFull" /> + <VertFormat type="Stretched" /> + <HorzFormat type="Tiled" /> + </ImageryComponent> + </ImagerySection> + <StateImagery name="Enabled"> + <Layer> + <Section section="frame" /> + </Layer> + </StateImagery> + <StateImagery name="Disabled"> + <Layer> + <Section section="frame"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="EnabledProgress"> + <Layer> + <Section section="progress_lights" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledProgress"> + <Layer> + <Section section="progress_lights"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + </WidgetLook> + + <!-- OpenGate Hull progress bar --> + <WidgetLook name="OpenGateLook/OGProgressBarHull"> + <NamedArea name="ProgressArea"> + <Area> + <Dim type="LeftEdge" > + <UnifiedDim scale="1" type="Width"> + <DimOperator op="Subtract"> + <AbsoluteDim value="166"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarHullFull" dimension="Width" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="28"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarHullFull" dimension="Height" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><ImageDim imageset="OpenGateLook" image="OGProgressBarHullFull" dimension="Width" /></Dim> + <Dim type="Height" ><ImageDim imageset="OpenGateLook" image="OGProgressBarHullFull" dimension="Height" /></Dim> + </Area> + </NamedArea> + <ImagerySection name="frame"> + <FrameComponent> + <Area> + <Dim type="LeftEdge" > + <UnifiedDim scale="1" type="Width"> + <DimOperator op="Subtract"> + <AbsoluteDim value="166"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarHullEmpty" dimension="Width" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="28"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarHullEmpty" dimension="Height" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><ImageDim imageset="OpenGateLook" image="OGProgressBarHullEmpty" dimension="Width" /></Dim> + <Dim type="Height" ><ImageDim imageset="OpenGateLook" image="OGProgressBarHullEmpty" dimension="Height" /></Dim> + </Area> + <Image type="Background" imageset="OpenGateLook" image="OGProgressBarHullEmpty" /> + </FrameComponent> + </ImagerySection> + <ImagerySection name="progress_lights" > + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGProgressBarHullFull" /> + <VertFormat type="Stretched" /> + <HorzFormat type="Tiled" /> + </ImageryComponent> + </ImagerySection> + <StateImagery name="Enabled"> + <Layer> + <Section section="frame" /> + </Layer> + </StateImagery> + <StateImagery name="Disabled"> + <Layer> + <Section section="frame"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="EnabledProgress"> + <Layer> + <Section section="progress_lights" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledProgress"> + <Layer> + <Section section="progress_lights"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + </WidgetLook> + + <!-- OpenGate Vertical progress bar --> + <WidgetLook name="OpenGateLook/OGProgressBarVert"> + <Property name="VerticalProgress" value="True" /> + <NamedArea name="ProgressArea"> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="146" /> </Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="24"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarVertFull" dimension="Height" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><ImageDim imageset="OpenGateLook" image="OGProgressBarVertFull" dimension="Width" /></Dim> + <Dim type="Height" ><ImageDim imageset="OpenGateLook" image="OGProgressBarVertFull" dimension="Height" /></Dim> + </Area> + </NamedArea> + <ImagerySection name="frame"> + <FrameComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="146" /> </Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="24"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGProgressBarVertEmpty" dimension="Height" /> + </DimOperator> + </AbsoluteDim> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><ImageDim imageset="OpenGateLook" image="OGProgressBarVertEmpty" dimension="Width" /></Dim> + <Dim type="Height" ><ImageDim imageset="OpenGateLook" image="OGProgressBarVertEmpty" dimension="Height" /></Dim> + </Area> + <Image type="Background" imageset="OpenGateLook" image="OGProgressBarVertEmpty" /> + </FrameComponent> + </ImagerySection> + <ImagerySection name="progress_lights" > + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGProgressBarVertFull" /> + <VertFormat type="Stretched" /> + <HorzFormat type="Tiled" /> + </ImageryComponent> + </ImagerySection> + <StateImagery name="Enabled"> + <Layer> + <Section section="frame" /> + </Layer> + </StateImagery> + <StateImagery name="Disabled"> + <Layer> + <Section section="frame"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="EnabledProgress"> + <Layer> + <Section section="progress_lights" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledProgress"> + <Layer> + <Section section="progress_lights"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + </WidgetLook> + + <!-- OpenGate Editbox --> + <WidgetLook name="OpenGateLook/OGEditbox"> + <Property name="MouseCursorImage" value="set:OpenGateLook image:MouseTextBar" /> + <NamedArea name="TextArea"> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="6" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="13" /></Dim> + <Dim type="RightEdge" ><UnifiedDim scale="1.0" offset="-2" type="RightEdge" /></Dim> + <Dim type="BottomEdge" ><ImageDim imageset="OpenGateLook" image="OGEditBoxMiddle" dimension="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="13" /> + </DimOperator> + </ImageDim> + </Dim> + </Area> + </NamedArea> + <ImagerySection name="container_normal"> + <FrameComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><ImageDim imageset="OpenGateLook" image="OGEditBoxMiddle" dimension="Height" /></Dim> + </Area> + <Image type="LeftEdge" imageset="OpenGateLook" image="OGEditBoxLeft" /> + <Image type="RightEdge" imageset="OpenGateLook" image="OGEditBoxRight" /> + <Image type="Background" imageset="OpenGateLook" image="OGEditBoxMiddle" /> + <HorzFormat type="Tiled" /> + </FrameComponent> + </ImagerySection> + <ImagerySection name="selection"> + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="RightEdge" ><UnifiedDim scale="1.0" type="RightEdge" /></Dim> + <Dim type="BottomEdge" ><UnifiedDim scale="1.0" type="BottomEdge" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGTextSelectionBrush" /> + <VertFormat type="Stretched" /> + <HorzFormat type="Stretched" /> + </ImageryComponent> + </ImagerySection> + <ImagerySection name="Carat"> + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><ImageDim imageset="OpenGateLook" image="OGEditBoxCarat" dimension="Width" /></Dim> + <Dim type="BottomEdge" ><UnifiedDim scale="1.0" type="BottomEdge" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGEditBoxCarat" /> + <VertFormat type="Stretched" /> + <HorzFormat type="Stretched" /> + </ImageryComponent> + </ImagerySection> + <StateImagery name="Enabled"> + <Layer> + <Section section="container_normal" /> + </Layer> + </StateImagery> + <StateImagery name="ReadOnly"> + <Layer> + <Section section="container_normal" /> + </Layer> + </StateImagery> + <StateImagery name="Disabled"> + <Layer> + <Section section="container_normal"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="ActiveSelection"> + <Layer> + <Section section="selection"> + <ColourProperty name="ActiveSelectionColour" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="InactiveSelection"> + <Layer> + <Section section="selection"> + <ColourProperty name="InactiveSelectionColour" /> + </Section> + </Layer> + </StateImagery> + </WidgetLook> + + <!-- OpenGate Weapon 1 progress bar --> + <WidgetLook name="OpenGateLook/OGProgressBarWeapon1"> + <NamedArea name="ProgressArea"> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="169" /></Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="94" /> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><AbsoluteDim value="59" /></Dim> + <Dim type="Height" ><AbsoluteDim value="7" /></Dim> + </Area> + </NamedArea> + <ImagerySection name="frame"> + <FrameComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="169" /></Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="94" /> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><AbsoluteDim value="59" /></Dim> + <Dim type="Height" ><AbsoluteDim value="7" /></Dim> + </Area> + </FrameComponent> + </ImagerySection> + <ImagerySection name="progress_lights" > + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGProgressBarBlue" /> + <VertFormat type="Stretched" /> + <HorzFormat type="Stretched" /> + </ImageryComponent> + </ImagerySection> + <StateImagery name="Enabled"> + <Layer> + <Section section="frame" /> + </Layer> + </StateImagery> + <StateImagery name="Disabled"> + <Layer> + <Section section="frame"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="EnabledProgress"> + <Layer> + <Section section="progress_lights" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledProgress"> + <Layer> + <Section section="progress_lights"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + </WidgetLook> + + <!-- OpenGate Weapon 2 progress bar --> + <WidgetLook name="OpenGateLook/OGProgressBarWeapon2"> + <NamedArea name="ProgressArea"> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="233" /></Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="94" /> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><AbsoluteDim value="59" /></Dim> + <Dim type="Height" ><AbsoluteDim value="7" /></Dim> + </Area> + </NamedArea> + <ImagerySection name="frame"> + <FrameComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="233" /></Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="94" /> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><AbsoluteDim value="59" /></Dim> + <Dim type="Height" ><AbsoluteDim value="7" /></Dim> + </Area> + </FrameComponent> + </ImagerySection> + <ImagerySection name="progress_lights" > + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGProgressBarBlue" /> + <VertFormat type="Stretched" /> + <HorzFormat type="Stretched" /> + </ImageryComponent> + </ImagerySection> + <StateImagery name="Enabled"> + <Layer> + <Section section="frame" /> + </Layer> + </StateImagery> + <StateImagery name="Disabled"> + <Layer> + <Section section="frame"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="EnabledProgress"> + <Layer> + <Section section="progress_lights" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledProgress"> + <Layer> + <Section section="progress_lights"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + </WidgetLook> + + <!-- OpenGate Weapon 3 progress bar --> + <WidgetLook name="OpenGateLook/OGProgressBarWeapon3"> + <NamedArea name="ProgressArea"> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="297" /></Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="94" /> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><AbsoluteDim value="59" /></Dim> + <Dim type="Height" ><AbsoluteDim value="7" /></Dim> + </Area> + </NamedArea> + <ImagerySection name="frame"> + <FrameComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="297" /></Dim> + <Dim type="TopEdge" > + <UnifiedDim scale="1" type="Height"> + <DimOperator op="Subtract"> + <AbsoluteDim value="94" /> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Width" ><AbsoluteDim value="59" /></Dim> + <Dim type="Height" ><AbsoluteDim value="7" /></Dim> + </Area> + </FrameComponent> + </ImagerySection> + <ImagerySection name="progress_lights" > + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGProgressBarBlue" /> + <VertFormat type="Stretched" /> + <HorzFormat type="Stretched" /> + </ImageryComponent> + </ImagerySection> + <StateImagery name="Enabled"> + <Layer> + <Section section="frame" /> + </Layer> + </StateImagery> + <StateImagery name="Disabled"> + <Layer> + <Section section="frame"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="EnabledProgress"> + <Layer> + <Section section="progress_lights" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledProgress"> + <Layer> + <Section section="progress_lights"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + </WidgetLook> + + <!-- OpenGate Default Frame Window --> + <WidgetLook name="OpenGateLook/OGDefaultFrameWindow"> + <Property name="NSSizingCursorImage" value="set:OpenGateLook image:MouseNoSoCursor" /> + <Property name="EWSizingCursorImage" value="set:OpenGateLook image:MouseEsWeCursor" /> + <Property name="NWSESizingCursorImage" value="set:OpenGateLook image:MouseNwSeCursor" /> + <Property name="NESWSizingCursorImage" value="set:OpenGateLook image:MouseNeSwCursor" /> + <NamedArea name="ClientWithTitleWithFrame"> + <Area> + <Dim type="LeftEdge" ><ImageDim imageset="OpenGateLook" image="OGDefaultWindowLeftEdge" dimension="Width" /></Dim> + <Dim type="TopEdge" ><WidgetDim widget="__auto_titlebar__" dimension="BottomEdge" /></Dim> + <Dim type="RightEdge" > + <UnifiedDim scale="1" type="RightEdge"> + <DimOperator op="Subtract"> + <ImageDim imageset="OpenGateLook" image="OGDefaultWindowRightEdge" dimension="Width" /> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="BottomEdge" > + <UnifiedDim scale="1" type="BottomEdge"> + <DimOperator op="Subtract"> + <ImageDim imageset="OpenGateLook" image="OGDefaultWindowBottomEdge" dimension="Height" /> + </DimOperator> + </UnifiedDim> + </Dim> + </Area> + </NamedArea> + <NamedArea name="ClientWithTitleNoFrame"> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><WidgetDim widget="__auto_titlebar__" dimension="BottomEdge" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="BottomEdge" ><WidgetDim dimension="BottomEdge" /></Dim> + </Area> + </NamedArea> + <NamedArea name="ClientNoTitleWithFrame"> + <Area> + <Dim type="LeftEdge" ><ImageDim imageset="OpenGateLook" image="OGDefaultWindowTopLeft" dimension="Width" /></Dim> + <Dim type="TopEdge" ><ImageDim imageset="OpenGateLook" image="OGDefaultWindowTopEdge" dimension="Height" /></Dim> + <Dim type="RightEdge" > + <UnifiedDim scale="1" type="RightEdge"> + <DimOperator op="Subtract"> + <ImageDim imageset="OpenGateLook" image="OGDefaultWindowTopRight" dimension="Width" /> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="BottomEdge" > + <UnifiedDim scale="1" type="BottomEdge"> + <DimOperator op="Subtract"> + <ImageDim imageset="OpenGateLook" image="OGDefaultWindowBottomEdge" dimension="Height" /> + </DimOperator> + </UnifiedDim> + </Dim> + </Area> + </NamedArea> + <NamedArea name="ClientNoTitleNoFrame"> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + </NamedArea> + <Child type="OpenGateLook/OGDefaultTitlebar" nameSuffix="__auto_titlebar__"> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarLeftDeco" dimension="Height" /></Dim> + </Area> + <Property name="AlwaysOnTop" value="False" /> + </Child> + <Child type="OpenGateLook/OGSystemButton" nameSuffix="__auto_closebutton__"> + <Area> + <Dim type="LeftEdge" ><ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarLeftDeco" dimension="Width" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><ImageDim imageset="OpenGateLook" image="OGCloseButtonNormal" dimension="Width" /></Dim> + <Dim type="Height" ><ImageDim imageset="OpenGateLook" image="OGCloseButtonNormal" dimension="Height" /></Dim> + </Area> + <Property name="AlwaysOnTop" value="True" /> + <Property name="UseStandardImagery" value="False" /> + <Property name="NormalImage" value="set:OpenGateLook image:OGCloseButtonNormal" /> + <Property name="HoverImage" value="set:OpenGateLook image:OGCloseButtonHover" /> + <Property name="PushedImage" value="set:OpenGateLook image:OGCloseButtonHover" /> + </Child> + <ImagerySection name="withtitle_frame"> + <FrameComponent> + <Area> + <Dim type="LeftEdge" ><ImageDim imageset="OpenGateLook" image="OGDefaultWindowLeftEdge" dimension="Width" /></Dim> + <Dim type="TopEdge" ><WidgetDim widget="__auto_titlebar__" dimension="BottomEdge" /></Dim> + <Dim type="RightEdge" > + <UnifiedDim scale="1" type="RightEdge"> + <DimOperator op="Subtract"> + <ImageDim imageset="OpenGateLook" image="OGDefaultWindowRightEdge" dimension="Width" /> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="BottomEdge" > + <UnifiedDim scale="1" type="BottomEdge"> + <DimOperator op="Subtract"> + <ImageDim imageset="OpenGateLook" image="OGDefaultWindowBottomEdge" dimension="Height" /> + </DimOperator> + </UnifiedDim> + </Dim> + </Area> + <Image type="Background" imageset="OpenGateLook" image="OGDefaultWindowBG" /> + <VertFormat type="Tiled" /> + <HorzFormat type="Stretched" /> + </FrameComponent> + <FrameComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><WidgetDim widget="__auto_titlebar__" dimension="BottomEdge" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="BottomEdge" ><UnifiedDim scale="1" type="BottomEdge" /></Dim> + </Area> + <Image type="BottomLeftCorner" imageset="OpenGateLook" image="OGDefaultWindowBottomLeft" /> + <Image type="BottomRightCorner" imageset="OpenGateLook" image="OGDefaultWindowBottomRight" /> + <Image type="LeftEdge" imageset="OpenGateLook" image="OGDefaultWindowLeftEdge" /> + <Image type="RightEdge" imageset="OpenGateLook" image="OGDefaultWindowRightEdge" /> + <Image type="BottomEdge" imageset="OpenGateLook" image="OGDefaultWindowBottomEdge" /> + </FrameComponent> + </ImagerySection> + <ImagerySection name="notitle_frame"> + <FrameComponent> + <Area> + <Dim type="LeftEdge" ><ImageDim imageset="OpenGateLook" image="OGDefaultWindowLeftEdge" dimension="Width" /></Dim> + <Dim type="TopEdge" ><ImageDim imageset="OpenGateLook" image="OGDefaultWindowTopEdge" dimension="Height" /></Dim> + <Dim type="RightEdge" > + <UnifiedDim scale="1" type="RightEdge"> + <DimOperator op="Subtract"> + <ImageDim imageset="OpenGateLook" image="OGDefaultWindowRightEdge" dimension="Width" /> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="BottomEdge" > + <UnifiedDim scale="1" type="BottomEdge"> + <DimOperator op="Subtract"> + <ImageDim imageset="OpenGateLook" image="OGDefaultWindowBottomEdge" dimension="Width" /> + </DimOperator> + </UnifiedDim> + </Dim> + </Area> + <Image type="Background" imageset="OpenGateLook" image="OGDefaultWindowBG" /> + <VertFormat type="Tiled" /> + <HorzFormat type="Stretched" /> + </FrameComponent> + <FrameComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + <Image type="TopLeftCorner" imageset="OpenGateLook" image="OGDefaultWindowTopLeft" /> + <Image type="TopRightCorner" imageset="OpenGateLook" image="OGDefaultWindowTopRight" /> + <Image type="BottomLeftCorner" imageset="OpenGateLook" image="OGDefaultWindowBottomLeft" /> + <Image type="BottomRightCorner" imageset="OpenGateLook" image="OGDefaultWindowBottomRight" /> + <Image type="TopEdge" imageset="OpenGateLook" image="OGDefaultWindowTopEdge" /> + <Image type="LeftEdge" imageset="OpenGateLook" image="OGDefaultWindowLeftEdge" /> + <Image type="RightEdge" imageset="OpenGateLook" image="OGDefaultWindowRightEdge" /> + <Image type="BottomEdge" imageset="OpenGateLook" image="OGDefaultWindowBottomEdge" /> + </FrameComponent> + </ImagerySection> + <ImagerySection name="withtitle_noframe_client_area"> + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><WidgetDim widget="__auto_titlebar__" dimension="Height" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="BottomEdge" ><UnifiedDim scale="1" type="BottomEdge" /></Dim> + </Area> + <Image type="Background" imageset="OpenGateLook" image="OGDefaultWindowBG" /> + <VertFormat type="Tiled" /> + <HorzFormat type="Stretched" /> + </ImageryComponent> + </ImagerySection> + <ImagerySection name="notitle_noframe_client_area"> + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1" type="Height" /></Dim> + </Area> + <Image type="Background" imageset="OpenGateLook" image="OGDefaultWindowBG" /> + <VertFormat type="Tiled" /> + <HorzFormat type="Stretched" /> + </ImageryComponent> + </ImagerySection> + <StateImagery name="ActiveWithTitleWithFrame"> + <Layer> + <Section section="withtitle_frame" /> + </Layer> + </StateImagery> + <StateImagery name="InactiveWithTitleWithFrame"> + <Layer> + <Section section="withtitle_frame" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledWithTitleWithFrame"> + <Layer> + <Section section="withtitle_frame"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="ActiveWithTitleNoFrame"> + <Layer> + <Section section="withtitle_noframe_client_area" /> + </Layer> + </StateImagery> + <StateImagery name="InactiveWithTitleNoFrame"> + <Layer> + <Section section="withtitle_noframe_client_area" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledWithTitleNoFrame"> + <Layer> + <Section section="withtitle_noframe_client_area"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="ActiveNoTitleWithFrame"> + <Layer> + <Section section="notitle_frame" /> + </Layer> + </StateImagery> + <StateImagery name="InactiveNoTitleWithFrame"> + <Layer> + <Section section="notitle_frame" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledNoTitleWithFrame"> + <Layer> + <Section section="notitle_frame"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + <StateImagery name="ActiveNoTitleNoFrame"> + <Layer> + <Section section="notitle_noframe_client_area" /> + </Layer> + </StateImagery> + <StateImagery name="InactiveNoTitleNoFrame"> + <Layer> + <Section section="notitle_noframe_client_area" /> + </Layer> + </StateImagery> + <StateImagery name="DisabledNoTitleNoFrame"> + <Layer> + <Section section="notitle_noframe_client_area"> + <Colours topLeft="00000000" topRight="00000000" bottomLeft="00000000" bottomRight="00000000" /> + </Section> + </Layer> + </StateImagery> + </WidgetLook> + + <!-- OpenGate Default Titlebar --> + <WidgetLook name="OpenGateLook/OGDefaultTitlebar"> + <Property name="CaptionColour" value="FFFFFFFF" /> + <ImagerySection name="main"> + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1.0" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1.0" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGDefaultTitlebarLeftDeco" /> + <HorzFormat type="LeftAligned" /> + </ImageryComponent> + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarLeftDeco" dimension="Width" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1.0" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1.0" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGDefaultTitlebarSysBG" /> + <HorzFormat type="LeftAligned" /> + </ImageryComponent> + <ImageryComponent> + <Area> + <Dim type="LeftEdge" > + <ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarLeftDeco" dimension="Width"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarSysBG" dimension="Width" /> + </DimOperator> + </ImageDim> + </Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1.0" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1.0" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGDefaultTitlebarMiddleDeco" /> + <HorzFormat type="LeftAligned" /> + </ImageryComponent> + <ImageryComponent> + <Area> + <Dim type="LeftEdge" > + <ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarLeftDeco" dimension="Width"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarSysBG" dimension="Width"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarMiddleDeco" dimension="Width" /> + </DimOperator> + </ImageDim> + </DimOperator> + </ImageDim> + </Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="RightEdge" > + <UnifiedDim scale="1" type="RightEdge"> + <DimOperator op="Subtract"> + <ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarRightDeco" dimension="Width" /> + </DimOperator> + </UnifiedDim> + </Dim> + <Dim type="Height" ><UnifiedDim scale="1.0" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGDefaultTitlebarCaptionBG" /> + <HorzFormat type="Stretched" /> + </ImageryComponent> + <ImageryComponent> + <Area> + <Dim type="LeftEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="TopEdge" ><AbsoluteDim value="0" /></Dim> + <Dim type="Width" ><UnifiedDim scale="1.0" type="Width" /></Dim> + <Dim type="Height" ><UnifiedDim scale="1.0" type="Height" /></Dim> + </Area> + <Image imageset="OpenGateLook" image="OGDefaultTitlebarRightDeco" /> + <HorzFormat type="RightAligned" /> + </ImageryComponent> + </ImagerySection> + <ImagerySection name="caption"> + <TextComponent> + <Area> + <Dim type="LeftEdge" > + <ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarLeftDeco" dimension="Width"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarSysBG" dimension="Width"> + <DimOperator op="Add"> + <ImageDim imageset="OpenGateLook" image="OGDefaultTitlebarMiddleDeco" dimension="Width" /> + </DimOperator> + </ImageDim> + </DimOperator> + ... [truncated message content] |
From: <qr...@us...> - 2006-12-10 15:45:05
|
Revision: 300 http://svn.sourceforge.net/opengate/?rev=300&view=rev Author: qrstuvw Date: 2006-12-10 07:45:05 -0800 (Sun, 10 Dec 2006) Log Message: ----------- Read the README Modified Paths: -------------- trunk/current/README Modified: trunk/current/README =================================================================== --- trunk/current/README 2006-12-10 15:19:53 UTC (rev 299) +++ trunk/current/README 2006-12-10 15:45:05 UTC (rev 300) @@ -0,0 +1,10 @@ +OpenGate 0.0.1ALPHA release +Open the project in KDevelop and press F8 to build. If you were successfull in +compiling the source, checkout the svn client data in trunk/data/client and +add it to your local current/debug directory. + +Now run the client from current/debug or your local data/client directory. + +Have fun with it! +the OpenGate development team + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <qr...@us...> - 2006-12-10 15:19:53
|
Revision: 299 http://svn.sourceforge.net/opengate/?rev=299&view=rev Author: qrstuvw Date: 2006-12-10 07:19:53 -0800 (Sun, 10 Dec 2006) Log Message: ----------- Typo fix - should produce a blank screen Modified Paths: -------------- trunk/current/src/client/GraphicsSetup.cpp Modified: trunk/current/src/client/GraphicsSetup.cpp =================================================================== --- trunk/current/src/client/GraphicsSetup.cpp 2006-12-10 13:59:42 UTC (rev 298) +++ trunk/current/src/client/GraphicsSetup.cpp 2006-12-10 15:19:53 UTC (rev 299) @@ -20,18 +20,18 @@ #include "GraphicsSetup.h" +//--------------------------------------------------------------------------------// /** Defaul constructor. */ -//--------------------------------------------------------------------------------// GraphicsSetup::GraphicsSetup() {} +//--------------------------------------------------------------------------------// /** Default destructor. */ -//--------------------------------------------------------------------------------// GraphicsSetup::~GraphicsSetup() {} +//--------------------------------------------------------------------------------// /** This function initialises Ogre and CEGUI. */ -//--------------------------------------------------------------------------------// bool GraphicsSetup::initGraphics(framework_info* mFramework) { // Create root object and store a pointer to it in mFramework @@ -46,12 +46,13 @@ // Create the Graphics.xml file using default options if (!saveEngineSettings(mFramework)) return false; - return false; + if (!loadEngineSettings(mFramework)) + return false; } // Write all the currently available settings as comment - if (!saveEngineSettings(mFramework)) - return false; + //if (!saveEngineSettings(mFramework)) + // return false; // Load all resources from XML if (!setupResources()) @@ -69,21 +70,21 @@ // Pick a scene manager mFramework->sceneMgr = mFramework->ogreRoot->createSceneManager(Ogre::ST_GENERIC, "SMInstance"); - // Setup CEGUI Logging - CEGUI::Logger::getSingleton().setLoggingLevel(CEGUI::Insane); - CEGUI::Logger::getSingleton().setLogFilename("OpenGate.log", true); - // Tell CEGUI about our window and what scene manager to use mFramework->GUIRenderer = new CEGUI::OgreCEGUIRenderer(mFramework->renderWindow, Ogre::RENDER_QUEUE_OVERLAY, false, 3000, mFramework->sceneMgr); // Hook the CEGUI system to the renderer mFramework->GUISystem = new CEGUI::System(mFramework->GUIRenderer); + // Setup CEGUI Logging + CEGUI::Logger::getSingleton().setLoggingLevel(CEGUI::Insane); + CEGUI::Logger::getSingleton().setLogFilename("OpenGate.log", true); + return true; } +//--------------------------------------------------------------------------------// /** Get all the options from Graphics.xml and feed them to the RenderSystem. */ -//--------------------------------------------------------------------------------// bool GraphicsSetup::loadEngineSettings(framework_info* mFramework) { TiXmlDocument doc( "Graphics.xml" ); @@ -99,7 +100,7 @@ pElem = hRoot.FirstChild( "Subsystem" ).FirstChild().Element(); mRenderSystem = mFramework->ogreRoot->getRenderSystemByName(pElem->Attribute("value")); - for (pElem = hRoot.FirstChild( "GraphicsSetup" ).FirstChild().Element(); pElem != 0; pElem = pElem->NextSiblingElement()) + for (pElem = hRoot.FirstChild( "Graphics" ).FirstChild().Element(); pElem != 0; pElem = pElem->NextSiblingElement()) { mRenderSystem->setConfigOption(pElem->Attribute("name"), pElem->Attribute("value")); } @@ -107,8 +108,8 @@ return true; } +//--------------------------------------------------------------------------------// /** (re)Create Graphics.xml with options taken from the current RenderSystem. */ -//--------------------------------------------------------------------------------// bool GraphicsSetup::saveEngineSettings(framework_info* mFramework) { int i; @@ -174,8 +175,8 @@ return true; } +//--------------------------------------------------------------------------------// /** Create and populate resource groups from Resources.xml. */ -//--------------------------------------------------------------------------------// bool GraphicsSetup::setupResources() { TiXmlDocument doc( "Resources.xml" ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <qr...@us...> - 2006-12-10 13:59:42
|
Revision: 298 http://svn.sourceforge.net/opengate/?rev=298&view=rev Author: qrstuvw Date: 2006-12-10 05:59:42 -0800 (Sun, 10 Dec 2006) Log Message: ----------- - Some fixes - Don't try to run it. It should compile though. - Thinking about what to do with the /trunk/data directory... It should actually contain just the files USED by the client and/or server Modified Paths: -------------- trunk/current/configure.in trunk/current/opengate.kdevelop trunk/current/src/Client.cpp trunk/current/src/Makefile.am trunk/current/src/Server.cpp trunk/current/src/client/Makefile.am trunk/current/src/client/OpenGateApp.cpp trunk/current/src/client/OpenGateApp.h trunk/current/src/client/state/Makefile.am Modified: trunk/current/configure.in =================================================================== --- trunk/current/configure.in 2006-12-10 13:18:46 UTC (rev 297) +++ trunk/current/configure.in 2006-12-10 13:59:42 UTC (rev 298) @@ -7,4 +7,4 @@ AC_PROG_CXX AM_PROG_LIBTOOL -AC_OUTPUT(Makefile src/Makefile) +AC_OUTPUT(Makefile src/Makefile src/client/Makefile src/common/Makefile src/deps/Makefile src/server/Makefile src/client/logic/Makefile src/client/state/Makefile src/deps/tinyxml/Makefile) Modified: trunk/current/opengate.kdevelop =================================================================== --- trunk/current/opengate.kdevelop 2006-12-10 13:18:46 UTC (rev 297) +++ trunk/current/opengate.kdevelop 2006-12-10 13:59:42 UTC (rev 298) @@ -11,6 +11,10 @@ <keyword>Code</keyword> </keywords> <ignoreparts/> + <projectdirectory>.</projectdirectory> + <absoluteprojectpath>false</absoluteprojectpath> + <description></description> + <versioncontrol></versioncontrol> </general> <kdevautoproject> <general> @@ -18,9 +22,16 @@ <useconfiguration>debug</useconfiguration> </general> <run> - <mainprogram>src/opengate</mainprogram> + <mainprogram></mainprogram> <terminal>true</terminal> - <directoryradio>executable</directoryradio> + <directoryradio>build</directoryradio> + <customdirectory>/</customdirectory> + <programargs></programargs> + <autocompile>true</autocompile> + <envvars/> + <runarguments> + <opengate-client></opengate-client> + </runarguments> </run> <configurations> <optimized> @@ -37,6 +48,7 @@ <cxxcompiler>kdevgppoptions</cxxcompiler> <f77compiler>kdevg77options</f77compiler> <cxxflags>-O0 -g3</cxxflags> + <envvars/> </debug> </configurations> <make> @@ -44,6 +56,12 @@ <envvar value="1" name="WANT_AUTOCONF_2_5" /> <envvar value="1" name="WANT_AUTOMAKE_1_6" /> </envvars> + <abortonerror>true</abortonerror> + <runmultiplejobs>false</runmultiplejobs> + <numberofjobs>1</numberofjobs> + <dontact>false</dontact> + <makebin></makebin> + <prio>0</prio> </make> </kdevautoproject> <kdevdoctreeview> @@ -93,6 +111,7 @@ </ignoredoxygen> </kdevdoctreeview> <kdevfilecreate> + <filetypes/> <useglobaltypes> <type ext="cpp" /> <type ext="h" /> @@ -114,6 +133,7 @@ <projectdoc> <docsystem>Doxygen Documentation Collection</docsystem> <docurl>opengate.tag</docurl> + <usermanualurl></usermanualurl> </projectdoc> </kdevdocumentation> <substmap> @@ -143,5 +163,42 @@ <argumentsHintDelay>400</argumentsHintDelay> <headerCompletionDelay>250</headerCompletionDelay> </codecompletion> + <qt> + <used>false</used> + <version>3</version> + <root>/usr/lib/qt-3.3</root> + </qt> + <creategettersetter> + <prefixGet></prefixGet> + <prefixSet>set</prefixSet> + <prefixVariable>m_,_</prefixVariable> + <parameterName>theValue</parameterName> + <inlineGet>true</inlineGet> + <inlineSet>true</inlineSet> + </creategettersetter> </kdevcppsupport> + <cppsupportpart> + <filetemplates> + <interfacesuffix>.h</interfacesuffix> + <implementationsuffix>.cpp</implementationsuffix> + </filetemplates> + </cppsupportpart> + <kdevdebugger> + <general> + <programargs></programargs> + <gdbpath></gdbpath> + <dbgshell></dbgshell> + <configGdbScript></configGdbScript> + <runShellScript></runShellScript> + <runGdbScript></runGdbScript> + <breakonloadinglibs>true</breakonloadinglibs> + <separatetty>false</separatetty> + <floatingtoolbar>false</floatingtoolbar> + </general> + <display> + <staticmembers>false</staticmembers> + <demanglenames>true</demanglenames> + <outputradix>10</outputradix> + </display> + </kdevdebugger> </kdevelop> Modified: trunk/current/src/Client.cpp =================================================================== --- trunk/current/src/Client.cpp 2006-12-10 13:18:46 UTC (rev 297) +++ trunk/current/src/Client.cpp 2006-12-10 13:59:42 UTC (rev 298) @@ -35,15 +35,8 @@ // Create application object OpenGateApp app; - try - { - app.go(); - } - catch( Exception& e ) - { - fprintf(stderr, "An exception has occured: %s\n", - e.getFullDescription().c_str()); - } + // Launch + app.go(); return EXIT_SUCCESS; } Modified: trunk/current/src/Makefile.am =================================================================== --- trunk/current/src/Makefile.am 2006-12-10 13:18:46 UTC (rev 297) +++ trunk/current/src/Makefile.am 2006-12-10 13:59:42 UTC (rev 298) @@ -1,10 +1,14 @@ # set the include path found by configure -INCLUDES = $(all_includes) +INCLUDES = -I$(top_srcdir)/src/client -I$(top_srcdir)/src/deps \ + -I/usr/local/include/CEGUI -I/usr/local/include/OGRE $(all_includes) # the library search path. -bin_PROGRAMS = client server -server_SOURCES = Server.cpp -client_SOURCES = Client.cpp SUBDIRS = deps common client server +METASOURCES = AUTO +bin_PROGRAMS = opengate-client +opengate_client_SOURCES = Client.cpp +opengate_client_LDADD = $(top_builddir)/src/deps/tinyxml/libTinyXML.la \ + $(top_builddir)/src/client/state/libStates.la $(top_builddir)/src/client/libClient.la -L/usr/local/lib -lOgreMain \ + -lCEGUIOgreRenderer -lCEGUIBase Modified: trunk/current/src/Server.cpp =================================================================== --- trunk/current/src/Server.cpp 2006-12-10 13:18:46 UTC (rev 297) +++ trunk/current/src/Server.cpp 2006-12-10 13:59:42 UTC (rev 298) @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (C) 2006 by OpenGate development team * - * eg...@us... * + * eGore eg...@us... * + * Qrstuvw ab...@sl... * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -17,3 +18,18 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <iostream> +#include <cstdlib> + +using namespace std; + +int main(int argc, char *argv[]) +{ + + return EXIT_SUCCESS; +} Modified: trunk/current/src/client/Makefile.am =================================================================== --- trunk/current/src/client/Makefile.am 2006-12-10 13:18:46 UTC (rev 297) +++ trunk/current/src/client/Makefile.am 2006-12-10 13:59:42 UTC (rev 298) @@ -1,4 +1,5 @@ -INCLUDES = -I$(top_srcdir)/src/client -I$(top_srcdir)/src/deps $(all_includes) +INCLUDES = -I$(top_srcdir)/src/client -I$(top_srcdir)/src/deps \ + -I/usr/local/include/CEGUI -I/usr/local/include/OGRE $(all_includes) METASOURCES = AUTO SUBDIRS = logic state lib_LTLIBRARIES = libClient.la Modified: trunk/current/src/client/OpenGateApp.cpp =================================================================== --- trunk/current/src/client/OpenGateApp.cpp 2006-12-10 13:18:46 UTC (rev 297) +++ trunk/current/src/client/OpenGateApp.cpp 2006-12-10 13:59:42 UTC (rev 298) @@ -43,20 +43,13 @@ if (!initGraphics(&mFramework)) return; - // Start the GameStateManager and register the game states - setupGameStateManager(); - - // Start the first game state - GameStateMgr.start(GameStateMgr.findByName("IntroState")); -} - -//--------------------------------------------------------------------------------// -/** Create the GameStateManager and register the game states. */ -void OpenGateApp::setupGameStateManager() -{ + /** Create the GameStateManager and register the game states. */ // Create the gamestate manager GameStateManager GameStateMgr(&mFramework); // Create and register game states IntroState::Create(&GameStateMgr,"IntroState"); + + // Start the first game state + GameStateMgr.start(GameStateMgr.findByName("IntroState")); } Modified: trunk/current/src/client/OpenGateApp.h =================================================================== --- trunk/current/src/client/OpenGateApp.h 2006-12-10 13:18:46 UTC (rev 297) +++ trunk/current/src/client/OpenGateApp.h 2006-12-10 13:59:42 UTC (rev 298) @@ -48,9 +48,6 @@ /** go() starts the OpenGate client. */ void go(); - private: - /** Create the GameStateManager and register the game states. */ - void setupGameStateManager(); }; #endif Modified: trunk/current/src/client/state/Makefile.am =================================================================== --- trunk/current/src/client/state/Makefile.am 2006-12-10 13:18:46 UTC (rev 297) +++ trunk/current/src/client/state/Makefile.am 2006-12-10 13:59:42 UTC (rev 298) @@ -1,4 +1,5 @@ -INCLUDES = -I$(top_srcdir)/src/client $(all_includes) +INCLUDES = -I$(top_srcdir)/src/client -I/usr/local/include/OGRE \ + -I/usr/local/include/CEGUI $(all_includes) METASOURCES = AUTO lib_LTLIBRARIES = libStates.la noinst_HEADERS = IntroState.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <eg...@us...> - 2006-12-10 13:18:45
|
Revision: 297 http://svn.sourceforge.net/opengate/?rev=297&view=rev Author: egore Date: 2006-12-10 05:18:46 -0800 (Sun, 10 Dec 2006) Log Message: ----------- Add models and description for sponge and tank Added Paths: ----------- trunk/data/capacitors/sponge.blend trunk/data/capacitors/sponge.xml trunk/data/capacitors/tank.blend trunk/data/capacitors/tank.xml Added: trunk/data/capacitors/sponge.blend =================================================================== (Binary files differ) Property changes on: trunk/data/capacitors/sponge.blend ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/capacitors/sponge.xml =================================================================== (Binary files differ) Property changes on: trunk/data/capacitors/sponge.xml ___________________________________________________________________ Name: svn:mime-type + application/xml Added: trunk/data/capacitors/tank.blend =================================================================== (Binary files differ) Property changes on: trunk/data/capacitors/tank.blend ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/capacitors/tank.xml =================================================================== (Binary files differ) Property changes on: trunk/data/capacitors/tank.xml ___________________________________________________________________ Name: svn:mime-type + application/xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <eg...@us...> - 2006-12-10 12:34:48
|
Revision: 296 http://svn.sourceforge.net/opengate/?rev=296&view=rev Author: egore Date: 2006-12-10 04:34:47 -0800 (Sun, 10 Dec 2006) Log Message: ----------- Add model and description for outlet Added Paths: ----------- trunk/data/capacitors/outlet.blend trunk/data/capacitors/outlet.xml Added: trunk/data/capacitors/outlet.blend =================================================================== (Binary files differ) Property changes on: trunk/data/capacitors/outlet.blend ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/capacitors/outlet.xml =================================================================== (Binary files differ) Property changes on: trunk/data/capacitors/outlet.xml ___________________________________________________________________ Name: svn:mime-type + application/xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <eg...@us...> - 2006-12-10 12:01:14
|
Revision: 295 http://svn.sourceforge.net/opengate/?rev=295&view=rev Author: egore Date: 2006-12-10 04:01:14 -0800 (Sun, 10 Dec 2006) Log Message: ----------- Add model and definition for Mantra Add model for S-C-15 Modified Paths: -------------- trunk/data/capacitors/s_c_15.xml Added Paths: ----------- trunk/data/capacitors/mantra.blend trunk/data/capacitors/mantra.xml trunk/data/capacitors/s_c_15.blend Added: trunk/data/capacitors/mantra.blend =================================================================== (Binary files differ) Property changes on: trunk/data/capacitors/mantra.blend ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/capacitors/mantra.xml =================================================================== (Binary files differ) Property changes on: trunk/data/capacitors/mantra.xml ___________________________________________________________________ Name: svn:mime-type + application/xml Added: trunk/data/capacitors/s_c_15.blend =================================================================== (Binary files differ) Property changes on: trunk/data/capacitors/s_c_15.blend ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/data/capacitors/s_c_15.xml =================================================================== --- trunk/data/capacitors/s_c_15.xml 2006-12-10 06:10:14 UTC (rev 294) +++ trunk/data/capacitors/s_c_15.xml 2006-12-10 12:01:14 UTC (rev 295) @@ -8,7 +8,7 @@ <faction>Solrain</faction> <description>The S-C-15 is Solrain's stock equipment capacitor, and is basically a modified Mantra. All Solrain pilots are given this as part of their starter package. TRI subsidizes production of this model, and therefore it cannot be legally traded or sold for much value.</description> <image>s_c_15.jpg</image> - <model>s_c_15.wings</model> + <model>s_c_15.blend</model> <!-- Production Data --> <manufacturer>T&P Systems</manufacturer> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ult...@us...> - 2006-12-10 06:10:14
|
Revision: 294 http://svn.sourceforge.net/opengate/?rev=294&view=rev Author: ultrasick Date: 2006-12-09 22:10:14 -0800 (Sat, 09 Dec 2006) Log Message: ----------- small changes Modified Paths: -------------- trunk/data/commodities/Conflux_biomass.blend Modified: trunk/data/commodities/Conflux_biomass.blend =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <qr...@us...> - 2006-12-10 02:18:08
|
Revision: 293 http://svn.sourceforge.net/opengate/?rev=293&view=rev Author: qrstuvw Date: 2006-12-09 18:18:08 -0800 (Sat, 09 Dec 2006) Log Message: ----------- KDevelop project file Modified Paths: -------------- trunk/current/opengate.kdevelop Modified: trunk/current/opengate.kdevelop =================================================================== --- trunk/current/opengate.kdevelop 2006-12-10 02:09:05 UTC (rev 292) +++ trunk/current/opengate.kdevelop 2006-12-10 02:18:08 UTC (rev 293) @@ -20,6 +20,7 @@ <run> <mainprogram>src/opengate</mainprogram> <terminal>true</terminal> + <directoryradio>executable</directoryradio> </run> <configurations> <optimized> @@ -38,6 +39,12 @@ <cxxflags>-O0 -g3</cxxflags> </debug> </configurations> + <make> + <envvars> + <envvar value="1" name="WANT_AUTOCONF_2_5" /> + <envvar value="1" name="WANT_AUTOMAKE_1_6" /> + </envvars> + </make> </kdevautoproject> <kdevdoctreeview> <ignoretocs> @@ -95,7 +102,13 @@ <groups> <group pattern="*.h" name="Header files" /> <group pattern="*.cpp" name="Source files" /> + <hidenonprojectfiles>false</hidenonprojectfiles> + <hidenonlocation>false</hidenonlocation> </groups> + <tree> + <hidepatterns>*.o,*.lo,CVS</hidepatterns> + <hidenonprojectfiles>false</hidenonprojectfiles> + </tree> </kdevfileview> <kdevdocumentation> <projectdoc> @@ -116,4 +129,19 @@ <YEAR>2006</YEAR> <dest>/code/opengate</dest> </substmap> + <kdevcppsupport> + <references/> + <codecompletion> + <includeGlobalFunctions>true</includeGlobalFunctions> + <includeTypes>true</includeTypes> + <includeEnums>true</includeEnums> + <includeTypedefs>false</includeTypedefs> + <automaticCodeCompletion>true</automaticCodeCompletion> + <automaticArgumentsHint>true</automaticArgumentsHint> + <automaticHeaderCompletion>true</automaticHeaderCompletion> + <codeCompletionDelay>250</codeCompletionDelay> + <argumentsHintDelay>400</argumentsHintDelay> + <headerCompletionDelay>250</headerCompletionDelay> + </codecompletion> + </kdevcppsupport> </kdevelop> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <qr...@us...> - 2006-12-10 02:09:06
|
Revision: 292 http://svn.sourceforge.net/opengate/?rev=292&view=rev Author: qrstuvw Date: 2006-12-09 18:09:05 -0800 (Sat, 09 Dec 2006) Log Message: ----------- Automake stuff & KDevelop project file Added Paths: ----------- trunk/current/Makefile.am trunk/current/Makefile.cvs trunk/current/NEWS trunk/current/README trunk/current/TODO trunk/current/ltmain.sh trunk/current/missing trunk/current/mkinstalldirs trunk/current/opengate.kdevelop Added: trunk/current/Makefile.am =================================================================== --- trunk/current/Makefile.am (rev 0) +++ trunk/current/Makefile.am 2006-12-10 02:09:05 UTC (rev 292) @@ -0,0 +1,5 @@ +# not a GNU package. You can remove this line, if +# have all needed files, that a GNU package needs +AUTOMAKE_OPTIONS = foreign 1.4 + +SUBDIRS = src Property changes on: trunk/current/Makefile.am ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/Makefile.cvs =================================================================== --- trunk/current/Makefile.cvs (rev 0) +++ trunk/current/Makefile.cvs 2006-12-10 02:09:05 UTC (rev 292) @@ -0,0 +1,8 @@ +default: all + +all: + aclocal + autoheader + automake + autoconf + Property changes on: trunk/current/Makefile.cvs ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/NEWS =================================================================== Property changes on: trunk/current/NEWS ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/README =================================================================== Property changes on: trunk/current/README ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/TODO =================================================================== Property changes on: trunk/current/TODO ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/ltmain.sh =================================================================== (Binary files differ) Property changes on: trunk/current/ltmain.sh ___________________________________________________________________ Name: svn:executable + * Name: svn:mime-type + application/x-bsh Added: trunk/current/missing =================================================================== (Binary files differ) Property changes on: trunk/current/missing ___________________________________________________________________ Name: svn:executable + * Name: svn:mime-type + application/x-bsh Added: trunk/current/mkinstalldirs =================================================================== (Binary files differ) Property changes on: trunk/current/mkinstalldirs ___________________________________________________________________ Name: svn:executable + * Name: svn:mime-type + application/x-bsh Added: trunk/current/opengate.kdevelop =================================================================== --- trunk/current/opengate.kdevelop (rev 0) +++ trunk/current/opengate.kdevelop 2006-12-10 02:09:05 UTC (rev 292) @@ -0,0 +1,119 @@ +<?xml version = '1.0'?> +<kdevelop> + <general> + <author>OpenGate development team</author> + <email>eg...@us...</email> + <version>0.0.1</version> + <projectmanagement>KDevAutoProject</projectmanagement> + <primarylanguage>C++</primarylanguage> + <keywords> + <keyword>C++</keyword> + <keyword>Code</keyword> + </keywords> + <ignoreparts/> + </general> + <kdevautoproject> + <general> + <activetarget>src/opengate</activetarget> + <useconfiguration>debug</useconfiguration> + </general> + <run> + <mainprogram>src/opengate</mainprogram> + <terminal>true</terminal> + </run> + <configurations> + <optimized> + <builddir>optimized</builddir> + <ccompiler>kdevgccoptions</ccompiler> + <cxxcompiler>kdevgppoptions</cxxcompiler> + <f77compiler>kdevg77options</f77compiler> + <cxxflags>-O2 -g0</cxxflags> + </optimized> + <debug> + <configargs>--enable-debug=full</configargs> + <builddir>debug</builddir> + <ccompiler>kdevgccoptions</ccompiler> + <cxxcompiler>kdevgppoptions</cxxcompiler> + <f77compiler>kdevg77options</f77compiler> + <cxxflags>-O0 -g3</cxxflags> + </debug> + </configurations> + </kdevautoproject> + <kdevdoctreeview> + <ignoretocs> + <toc>ada</toc> + <toc>ada_bugs_gcc</toc> + <toc>bash</toc> + <toc>bash_bugs</toc> + <toc>clanlib</toc> + <toc>w3c-dom-level2-html</toc> + <toc>fortran_bugs_gcc</toc> + <toc>gnome1</toc> + <toc>gnustep</toc> + <toc>gtk</toc> + <toc>gtk_bugs</toc> + <toc>haskell</toc> + <toc>haskell_bugs_ghc</toc> + <toc>java_bugs_gcc</toc> + <toc>java_bugs_sun</toc> + <toc>kde2book</toc> + <toc>opengl</toc> + <toc>pascal_bugs_fp</toc> + <toc>php</toc> + <toc>php_bugs</toc> + <toc>perl</toc> + <toc>perl_bugs</toc> + <toc>python</toc> + <toc>python_bugs</toc> + <toc>qt-kdev3</toc> + <toc>ruby</toc> + <toc>ruby_bugs</toc> + <toc>sdl</toc> + <toc>w3c-svg</toc> + <toc>sw</toc> + <toc>w3c-uaag10</toc> + <toc>wxwidgets_bugs</toc> + </ignoretocs> + <ignoreqt_xml> + <toc>Guide to the Qt Translation Tools</toc> + <toc>Qt Assistant Manual</toc> + <toc>Qt Designer Manual</toc> + <toc>Qt Reference Documentation</toc> + <toc>qmake User Guide</toc> + </ignoreqt_xml> + <ignoredoxygen> + <toc>KDE Libraries (Doxygen)</toc> + </ignoredoxygen> + </kdevdoctreeview> + <kdevfilecreate> + <useglobaltypes> + <type ext="cpp" /> + <type ext="h" /> + </useglobaltypes> + </kdevfilecreate> + <kdevfileview> + <groups> + <group pattern="*.h" name="Header files" /> + <group pattern="*.cpp" name="Source files" /> + </groups> + </kdevfileview> + <kdevdocumentation> + <projectdoc> + <docsystem>Doxygen Documentation Collection</docsystem> + <docurl>opengate.tag</docurl> + </projectdoc> + </kdevdocumentation> + <substmap> + <APPNAME>opengate</APPNAME> + <APPNAMELC>opengate</APPNAMELC> + <APPNAMESC>Opengate</APPNAMESC> + <APPNAMEUC>OPENGATE</APPNAMEUC> + <AUTHOR>OpenGate development team</AUTHOR> + <EMAIL>eg...@us...</EMAIL> + <LICENSE>GPL</LICENSE> + <LICENSEFILE>COPYING</LICENSEFILE> + <VERSION>0.0.1</VERSION> + <YEAR>2006</YEAR> + <dest>/code/opengate</dest> + </substmap> +</kdevelop> Property changes on: trunk/current/opengate.kdevelop ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <qr...@us...> - 2006-12-10 01:50:34
|
Revision: 291 http://svn.sourceforge.net/opengate/?rev=291&view=rev Author: qrstuvw Date: 2006-12-09 17:50:34 -0800 (Sat, 09 Dec 2006) Log Message: ----------- Modified TinyXML and some Makefiles Modified Paths: -------------- trunk/current/src/client/Makefile.am trunk/current/src/client/state/Makefile.am trunk/current/src/deps/tinyxml/tinyxml.h Modified: trunk/current/src/client/Makefile.am =================================================================== --- trunk/current/src/client/Makefile.am 2006-12-10 01:06:16 UTC (rev 290) +++ trunk/current/src/client/Makefile.am 2006-12-10 01:50:34 UTC (rev 291) @@ -1,4 +1,4 @@ -INCLUDES = $(all_includes) +INCLUDES = -I$(top_srcdir)/src/client -I$(top_srcdir)/src/deps $(all_includes) METASOURCES = AUTO SUBDIRS = logic state lib_LTLIBRARIES = libClient.la Modified: trunk/current/src/client/state/Makefile.am =================================================================== --- trunk/current/src/client/state/Makefile.am 2006-12-10 01:06:16 UTC (rev 290) +++ trunk/current/src/client/state/Makefile.am 2006-12-10 01:50:34 UTC (rev 291) @@ -1,4 +1,4 @@ -INCLUDES = $(all_includes) +INCLUDES = -I$(top_srcdir)/src/client $(all_includes) METASOURCES = AUTO lib_LTLIBRARIES = libStates.la noinst_HEADERS = IntroState.h Modified: trunk/current/src/deps/tinyxml/tinyxml.h =================================================================== --- trunk/current/src/deps/tinyxml/tinyxml.h 2006-12-10 01:06:16 UTC (rev 290) +++ trunk/current/src/deps/tinyxml/tinyxml.h 2006-12-10 01:50:34 UTC (rev 291) @@ -43,6 +43,8 @@ #define DEBUG #endif +#define TIXML_USE_STL + #ifdef TIXML_USE_STL #include <string> #include <iostream> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <qr...@us...> - 2006-12-10 01:06:16
|
Revision: 290 http://svn.sourceforge.net/opengate/?rev=290&view=rev Author: qrstuvw Date: 2006-12-09 17:06:16 -0800 (Sat, 09 Dec 2006) Log Message: ----------- Basic ALPHA framework Modified Paths: -------------- trunk/current/src/Makefile.am Added Paths: ----------- trunk/current/src/Client.cpp trunk/current/src/Server.cpp trunk/current/src/client/ trunk/current/src/client/GameState.h trunk/current/src/client/GameStateManager.cpp trunk/current/src/client/GameStateManager.h trunk/current/src/client/Global.h trunk/current/src/client/GraphicsSetup.cpp trunk/current/src/client/GraphicsSetup.h trunk/current/src/client/Makefile.am trunk/current/src/client/OpenGateApp.cpp trunk/current/src/client/OpenGateApp.h trunk/current/src/client/logic/ trunk/current/src/client/logic/Makefile.am trunk/current/src/client/state/ trunk/current/src/client/state/IntroState.cpp trunk/current/src/client/state/IntroState.h trunk/current/src/client/state/Makefile.am trunk/current/src/common/ trunk/current/src/common/Makefile.am trunk/current/src/deps/ trunk/current/src/deps/Makefile.am trunk/current/src/deps/tinyxml/ trunk/current/src/deps/tinyxml/Makefile.am trunk/current/src/deps/tinyxml/tinyxml.cpp trunk/current/src/deps/tinyxml/tinyxml.h trunk/current/src/deps/tinyxml/tinyxmlerror.cpp trunk/current/src/deps/tinyxml/tinyxmlparser.cpp trunk/current/src/server/ trunk/current/src/server/Makefile.am Added: trunk/current/src/Client.cpp =================================================================== --- trunk/current/src/Client.cpp (rev 0) +++ trunk/current/src/Client.cpp 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,49 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * eGore eg...@us... * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <iostream> +#include <cstdlib> + +#include "OpenGateApp.h" + +using namespace std; + +int main(int argc, char *argv[]) +{ + // Create application object + OpenGateApp app; + + try + { + app.go(); + } + catch( Exception& e ) + { + fprintf(stderr, "An exception has occured: %s\n", + e.getFullDescription().c_str()); + } + + return EXIT_SUCCESS; +} Property changes on: trunk/current/src/Client.cpp ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Modified: trunk/current/src/Makefile.am =================================================================== --- trunk/current/src/Makefile.am 2006-12-10 00:30:25 UTC (rev 289) +++ trunk/current/src/Makefile.am 2006-12-10 01:06:16 UTC (rev 290) @@ -1,5 +1,10 @@ # set the include path found by configure -INCLUDES= $(all_includes) +INCLUDES = $(all_includes) # the library search path. +bin_PROGRAMS = client server + +server_SOURCES = Server.cpp +client_SOURCES = Client.cpp +SUBDIRS = deps common client server Added: trunk/current/src/Server.cpp =================================================================== --- trunk/current/src/Server.cpp (rev 0) +++ trunk/current/src/Server.cpp 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,19 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * eg...@us... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ Property changes on: trunk/current/src/Server.cpp ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/GameState.h =================================================================== --- trunk/current/src/client/GameState.h (rev 0) +++ trunk/current/src/client/GameState.h 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,158 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef GAMESTATE_H +#define GAMESTATE_H + +#include "Global.h" + +class GameState; + +/** \class GameStateListener + Allows a GameStateManager to recieve callbacks from a GameState. */ +class GameStateListener + { + // Attributes ------------------------------------------------------------------------------ + + // Methods --------------------------------------------------------------------------------- + public: + /** Constructor */ + GameStateListener(void) + {} + ; + + /** Virtual Deconstructor */ + virtual ~GameStateListener(void) + {} + ; + + /** Store a game state to manage. */ + virtual void ManageGameState(Ogre::String state_name, GameState* state) = 0; + + /** Find a state by name. */ + virtual GameState* findByName(Ogre::String state_name) = 0; + + /** Request a change to state. */ + virtual void changeGameState(GameState* state) = 0; + + /** Push state onto the stack. */ + virtual bool pushGameState(GameState* state) = 0; + + /** Pop a game state off the stack. */ + virtual void popGameState() = 0; + + /** Cause a shutdown. */ + virtual void Shutdown() = 0; + }; + +/** \class GameState + Inherit this class to make a game state capable + of being mananged by the game state manager. +*/ +class GameState + { + // Attributes ------------------------------------------------------------------------------ + protected: + /** Stores the GameStateManager which is managing this state. */ + GameStateListener* parent; + + /** Keeps a method of device interaction. */ + framework_info* mFramework; + + // Methods --------------------------------------------------------------------------------- + protected: + /** Constructor: This should be a private member of an inherited class. */ + GameState(void) + {} + ; + + /** Destructor: This should be a private member of an inherited class. */ + virtual ~GameState(void) + {} + ; + + /** Find a state by its name. */ + GameState* findByName(Ogre::String state_name) + { + return parent->findByName(state_name); + } + + /** Request a change to game state. */ + void changeGameState(GameState* state) + { + parent->changeGameState(state); + } + + /** Push game state onto the stack. */ + bool pushGameState(GameState* state) + { + return parent->pushGameState(state); + } + + /** Pop a game state off the stack. */ + void popGameState(void) + { + parent->popGameState(); + } + + /** Cause a shutdown. */ + void Shutdown(void) + { + parent->Shutdown(); + } + + public: + /** Do not inherit this directly! */ + void Create(GameStateListener* parent, const Ogre::String name) + {} + ; + + /** Destroy self. */ + void destroy(void) + { + delete this; + } + + /** Initialize the game state with device information. */ + void init(framework_info* framework) + { + mFramework = framework; + } + + /** Inherit to supply game state enter code. */ + virtual void enter(void) = 0; + + /** Inherit to supply state exit code. */ + virtual void exit(void) = 0; + + /** Inherit to supply pause code. Inherit only if this game state can be paused. + Return true for successful pause, or false to deny pause. */ + virtual bool pause(void) + { + return false; + } + + /** Inherit to supply resume code. Inherit only if this game state can be paused. */ + virtual void resume(void) + {} + ; + }; + +#endif Property changes on: trunk/current/src/client/GameState.h ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/GameStateManager.cpp =================================================================== --- trunk/current/src/client/GameStateManager.cpp (rev 0) +++ trunk/current/src/client/GameStateManager.cpp 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,193 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "GameStateManager.h" + +//--------------------------------------------------------------------------------// +/** Constructs the GameStateManager. */ +GameStateManager::GameStateManager(framework_info* framework) +{ + mFramework = framework; +} + +//--------------------------------------------------------------------------------// +/** Cleans up the game states before the instance dies. */ +GameStateManager::~GameStateManager() +{ + // Clean up all the states on the stack + while (!mStateStack.empty()) + { + cleanup(mStateStack.back()); + mStateStack.pop_back(); + } + + // Destroy the game states + while(!mStates.empty()) + { + mStates.back().state->destroy(); + mStates.pop_back(); + } +} + +//--------------------------------------------------------------------------------// +/** Store a game state to manage. */ +void GameStateManager::ManageGameState(Ogre::String state_name,GameState* state) +{ + state_info new_state_info; + new_state_info.name = state_name; + new_state_info.state = state; + new_state_info.state->init(mFramework); + mStates.push_back(new_state_info); +} + +//--------------------------------------------------------------------------------// + +/** Find a game state by name. + @Remarks returns 0 on failure.*/ +GameState* GameStateManager::findByName(Ogre::String state_name) +{ + std::vector<state_info>::iterator itr; + + for(itr=mStates.begin();itr!=mStates.end();itr++) + { + if(itr->name==state_name) + return itr->state; + } + + return 0; +} + +//--------------------------------------------------------------------------------// +/** Start game state. This is used to start the game state + manager functioning with a particular state. + This function also does the main game loop and + takes care of the Windows message pump.*/ +void GameStateManager::start(GameState* state) +{ + changeGameState(state); + + while (!mShutdown) + { + // HACK: For some reason renderOneFrame() does not work, + // manually updating the window. + mFramework->ogreRoot->_fireFrameStarted(); + + // Run the message pump +#if OGRE_PLATFORM == OGRE_PLATFORM_WIN32 + { + MSG msg; + while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) + { + if (msg.message = WM_QUIT) + Shutdown(); + else + { + TranslateMessage(&msg); + DispatchMessage(&msg); + } + } + } +#endif + + mFramework->renderWindow->update(); + mFramework->ogreRoot->_fireFrameEnded(); + } +} + +//--------------------------------------------------------------------------------// +/** Change to a game state. This replaces the current game state + with a new game state. The current game state ends before + the new begins. */ +void GameStateManager::changeGameState(GameState* state) +{ + // Cleanup the current game state + if ( !mStateStack.empty() ) + { + cleanup(mStateStack.back()); + mStateStack.back()->exit(); + mStateStack.pop_back(); + } + + mStateStack.push_back(state); + init(state); + mStateStack.back()->enter(); +} + +//--------------------------------------------------------------------------------// +/** Push a game state onto the stack. This pauses the current game state + and begins a new game state. If the current game state refuses to + be paused, this will return false. */ +bool GameStateManager::pushGameState(GameState* state) +{ + // Pause current game state + if ( !mStateStack.empty() ) + { + if(!mStateStack.back()->pause()) + return false; + cleanup(mStateStack.back()); + } + + // Store and init the new state + mStateStack.push_back(state); + init(state); + mStateStack.back()->enter(); + + return true; +} + +//--------------------------------------------------------------------------------// +/** Pop a game state off the stack. This destroys the current game state + and returns control to the previous game state. */ +void GameStateManager::popGameState(void) +{ + // Cleanup the current game state + if ( !mStateStack.empty() ) + { + cleanup(mStateStack.back()); + mStateStack.back()->exit(); + mStateStack.pop_back(); + } + + // Resume previous game state or quit if there isn't one + if ( !mStateStack.empty() ) + { + init(mStateStack.back()); + mStateStack.back()->resume(); + } + else + Shutdown(); +} + +//--------------------------------------------------------------------------------// +/** Special case function to shutdown the system. */ +void GameStateManager::Shutdown() +{ + mShutdown = true; +} + +//--------------------------------------------------------------------------------// +/** This initializes a game state. */ +void GameStateManager::init(GameState* state) +{} + +//--------------------------------------------------------------------------------// +/** Cleans up a previous state. */ +void GameStateManager::cleanup(GameState* state) +{} Property changes on: trunk/current/src/client/GameStateManager.cpp ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/GameStateManager.h =================================================================== --- trunk/current/src/client/GameStateManager.h (rev 0) +++ trunk/current/src/client/GameStateManager.h 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,94 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef GAMESTATEMANAGER_H +#define GAMESTATEMANAGER_H + +#include "GameState.h" + +/** \class GameStateManager + The GameStateManager manages changes in the game states + in the game. It holds a stack of all open game states + and maps all events. */ +class GameStateManager: public GameStateListener + { + // Attributes ------------------------------------------------------------------------------ + protected: + /** Holds information about the states in order to + manage them properly and provide access. */ + typedef struct + { + Ogre::String name; + GameState* state; + } + state_info; + + /** This is the stack where the active states are stored. */ + std::vector<GameState*> mStateStack; + + /** This holds the states that are being managed. */ + std::vector<state_info> mStates; + + /** System Information. */ + framework_info* mFramework; + + /** If this is set to true, the game state manager prepares to exit. */ + bool mShutdown; + + // Methods --------------------------------------------------------------------------------- + protected: + /** This initializes a state. */ + void init(GameState* state); + + /** Cleans up a previous state. */ + void cleanup(GameState* state); + + public: + /** Constructs the GameStateManager. Must have all + input, output, gui functions in order to manage + states. */ + GameStateManager(framework_info* framework); + + /** Cleans up the states before the instance dies. */ + ~GameStateManager(); + + /** Store a game state to manage. */ + void ManageGameState(Ogre::String state_name, GameState* state); + + /** Find a game state by name. */ + GameState* findByName(Ogre::String state_name); + + /** Start game state */ + void start(GameState* state); + + /** Change to a new game state */ + void changeGameState(GameState* state); + + /** Push game state onto the stack. */ + bool pushGameState(GameState* state); + + /** Pop a game state off the stack. */ + void popGameState(void); + + /** This is a special case function to cause a shutdown. */ + void Shutdown(void); + }; + +#endif Property changes on: trunk/current/src/client/GameStateManager.h ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/Global.h =================================================================== --- trunk/current/src/client/Global.h (rev 0) +++ trunk/current/src/client/Global.h 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,66 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef GLOBAL_H +#define GLOBAL_H + +#include <OGRE/Ogre.h> +#include <OIS/OISMouse.h> +#include <OIS/OISKeyboard.h> +#include <OIS/OISJoyStick.h> +#include <OIS/OISInputManager.h> +/** This file eases an issue CEGUI has with OGRE's memory manager. Simply include this in + any files that are going to be doing 'CEGUI stuff', rather than CEGUI.h, + OgreCEGUIRender.h, OgreCEGUIResourceProvider.h, and OgreCEGUITexture.h (etc). + You will be in for smooth(er) sailing. **/ +#include <OGRE/OgreNoMemoryMacros.h> +#include <CEGUI/CEGUIImageset.h> +#include <CEGUI/CEGUISystem.h> +#include <CEGUI/CEGUILogger.h> +#include <CEGUI/CEGUISchemeManager.h> +#include <CEGUI/CEGUIWindowManager.h> +#include <CEGUI/CEGUIWindow.h> +#include <OGRE/OgreCEGUIRenderer.h> +#include <OGRE/OgreCEGUIResourceProvider.h> +#include <OGRE/OgreMemoryMacros.h> + +#include <CEGUI/elements/CEGUIEditbox.h> +#include <CEGUI/elements/CEGUIPushButton.h> +#include <CEGUI/elements/CEGUIEditbox.h> +#include <CEGUI/elements/CEGUIFrameWindow.h> +#include <CEGUI/elements/CEGUIStaticImage.h> +#include <CEGUI/elements/CEGUIProgressBar.h> +#include <CEGUI/elements/CEGUIStaticText.h> + +/** Information structure to facilitate the transfer of information between + GameState states. */ +typedef struct + { + Ogre::Root* ogreRoot; + Ogre::SceneManager* sceneMgr; + Ogre::Camera* camera; + Ogre::Viewport* viewport; + Ogre::RenderWindow* renderWindow; + CEGUI::OgreCEGUIRenderer* GUIRenderer; + CEGUI::System* GUISystem; + } +framework_info; + +#endif Property changes on: trunk/current/src/client/Global.h ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/GraphicsSetup.cpp =================================================================== --- trunk/current/src/client/GraphicsSetup.cpp (rev 0) +++ trunk/current/src/client/GraphicsSetup.cpp 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,204 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "GraphicsSetup.h" + +/** Defaul constructor. */ +//--------------------------------------------------------------------------------// +GraphicsSetup::GraphicsSetup() +{} + +/** Default destructor. */ +//--------------------------------------------------------------------------------// +GraphicsSetup::~GraphicsSetup() +{} + +/** This function initialises Ogre and CEGUI. */ +//--------------------------------------------------------------------------------// +bool GraphicsSetup::initGraphics(framework_info* mFramework) +{ + // Create root object and store a pointer to it in mFramework + mFramework->ogreRoot = new Ogre::Root("", "", "OpenGate.log"); + + // Load the render system (Linux only has OpenGL) + mFramework->ogreRoot->loadPlugin("/usr/local/lib/OGRE/RenderSystem_GL.so"); + + // Load engines settings + if (!loadEngineSettings(mFramework)) + { + // Create the Graphics.xml file using default options + if (!saveEngineSettings(mFramework)) + return false; + return false; + } + + // Write all the currently available settings as comment + if (!saveEngineSettings(mFramework)) + return false; + + // Load all resources from XML + if (!setupResources()) + return false; + + // FIXME: Make this do something. Returns an empty string if options are valid + mRenderSystem->validateConfigOptions(); + + // Tell the Ogre what render system to use + mFramework->ogreRoot->setRenderSystem(mRenderSystem); + + // Create our window + mFramework->renderWindow = mFramework->ogreRoot->initialise(true, "OpenGate 0.0.1ALPHA"); + + // Pick a scene manager + mFramework->sceneMgr = mFramework->ogreRoot->createSceneManager(Ogre::ST_GENERIC, "SMInstance"); + + // Setup CEGUI Logging + CEGUI::Logger::getSingleton().setLoggingLevel(CEGUI::Insane); + CEGUI::Logger::getSingleton().setLogFilename("OpenGate.log", true); + + // Tell CEGUI about our window and what scene manager to use + mFramework->GUIRenderer = new CEGUI::OgreCEGUIRenderer(mFramework->renderWindow, Ogre::RENDER_QUEUE_OVERLAY, false, 3000, mFramework->sceneMgr); + + // Hook the CEGUI system to the renderer + mFramework->GUISystem = new CEGUI::System(mFramework->GUIRenderer); + + return true; +} + +/** Get all the options from Graphics.xml and feed them to the RenderSystem. */ +//--------------------------------------------------------------------------------// +bool GraphicsSetup::loadEngineSettings(framework_info* mFramework) +{ + TiXmlDocument doc( "Graphics.xml" ); + if (!doc.LoadFile()) + return false; + doc.LoadFile(); + TiXmlHandle hDoc(&doc); + TiXmlElement* pElem; + TiXmlHandle hRoot(0); + + pElem = hDoc.FirstChildElement().Element(); + hRoot = TiXmlHandle(pElem); + + pElem = hRoot.FirstChild( "Subsystem" ).FirstChild().Element(); + mRenderSystem = mFramework->ogreRoot->getRenderSystemByName(pElem->Attribute("value")); + for (pElem = hRoot.FirstChild( "GraphicsSetup" ).FirstChild().Element(); pElem != 0; pElem = pElem->NextSiblingElement()) + { + mRenderSystem->setConfigOption(pElem->Attribute("name"), pElem->Attribute("value")); + } + + return true; +} + +/** (re)Create Graphics.xml with options taken from the current RenderSystem. */ +//--------------------------------------------------------------------------------// +bool GraphicsSetup::saveEngineSettings(framework_info* mFramework) +{ + int i; + std::string s; + TiXmlElement* _option; + TiXmlDocument doc; + TiXmlDeclaration* _decl = new TiXmlDeclaration( "1.0", "UTF-8", "No" ); + doc.LinkEndChild( _decl ); + TiXmlElement* _root = new TiXmlElement( "OpenGate" ); + doc.LinkEndChild( _root ); + + TiXmlComment* _comment; + _comment = new TiXmlComment(); + _comment->SetValue(" Automatically (re-)generated "); + _root->LinkEndChild( _comment ); + _comment = new TiXmlComment(); + _comment->SetValue(" Let's judge him by what he does next... "); + _root->LinkEndChild( _comment ); + + TiXmlElement* _subsys = new TiXmlElement( "Subsystem" ); + _root->LinkEndChild( _subsys ); + _option = new TiXmlElement( "Option" ); + _option->SetAttribute("name", "Rendering Subsystem"); + _option->SetAttribute("value", mRenderSystem->getName()); + _subsys->LinkEndChild( _option ); + Ogre::RenderSystemList* _rslist; + _rslist = mFramework->ogreRoot->getAvailableRenderers(); + s.clear(); + for (Ogre::RenderSystemList::iterator itr = _rslist->begin(); + itr != _rslist->end(); itr++) + { + s += " " + (*itr)->getName(); + } + s += " "; + _comment = new TiXmlComment(); + _comment->SetValue(s); + _subsys->LinkEndChild( _comment ); + + TiXmlElement* _graphics = new TiXmlElement( "Graphics" ); + _root->LinkEndChild( _graphics ); + Ogre::ConfigOptionMap _optmap; + _optmap = mRenderSystem->getConfigOptions(); + for (Ogre::ConfigOptionMap::iterator itr = _optmap.begin(); + itr != _optmap.end(); itr++) + { + _option = new TiXmlElement( "Option" ); + _option->SetAttribute("name", itr->second.name); + _option->SetAttribute("value", itr->second.currentValue); + _graphics->LinkEndChild( _option ); + s.clear(); + for (i = 0; i < (int)itr->second.possibleValues.size(); i++) + { + s += " " + itr->second.possibleValues.at(i); + } + s += " "; + _comment = new TiXmlComment(); + _comment->SetValue(s); + _graphics->LinkEndChild( _comment ); + } + + doc.SaveFile( "Graphics.xml" ); + + return true; +} + +/** Create and populate resource groups from Resources.xml. */ +//--------------------------------------------------------------------------------// +bool GraphicsSetup::setupResources() +{ + TiXmlDocument doc( "Resources.xml" ); + if (!doc.LoadFile()) + return false; + doc.LoadFile(); + TiXmlHandle hDoc(&doc); + TiXmlElement* pElem; + TiXmlElement* pGroup; + TiXmlHandle hGroup(0); + TiXmlHandle hRoot(0); + + pElem = hDoc.FirstChildElement().Element(); + hRoot = TiXmlHandle(pElem); + + for (pGroup = hRoot.FirstChild( "Resources" ).FirstChild( "Group" ).Element(); pGroup != 0; pGroup = pGroup->NextSiblingElement()) + { + hGroup = TiXmlHandle(pGroup); + for (pElem = hGroup.FirstChild( "Resource" ).Element(); pElem != 0; pElem = pElem->NextSiblingElement()) + { + Ogre::ResourceGroupManager::getSingleton().addResourceLocation(pElem->Attribute("location"), pElem->Attribute("type"), pGroup->Attribute("name"), false); + } + } + + return true; +} Property changes on: trunk/current/src/client/GraphicsSetup.cpp ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/GraphicsSetup.h =================================================================== --- trunk/current/src/client/GraphicsSetup.h (rev 0) +++ trunk/current/src/client/GraphicsSetup.h 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,58 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef GRAPHICSSETUP_H +#define GRAPHICSSETUP_H + +#include "Global.h" +#include <tinyxml/tinyxml.h> + +/** \class GraphicsSetup + This class initialises the Ogre engine and CEGUI. It is inherited by the + OpenGateApp class */ +class GraphicsSetup + { + // Attributes ------------------------------------------------------------------------------ + private: + Ogre::RenderSystem* mRenderSystem; + + // Methods --------------------------------------------------------------------------------- + private: + /** Create resource groups from Resources.xml. */ + bool setupResources(); + + /** Get all the options from Graphics.xml and feed them to the RenderSystem. */ + bool loadEngineSettings(framework_info* mFramework); + + /** (re)Create Graphics.xml according to the options taken from the current RenderSystem. */ + bool saveEngineSettings(framework_info* mFramework); + + protected: + /** Defaul constructor. */ + GraphicsSetup(); + + /** Default destructor. */ + ~GraphicsSetup(); + + /** This function initialises Ogre and CEGUI. */ + bool initGraphics(framework_info* mFramework); + }; + +#endif Property changes on: trunk/current/src/client/GraphicsSetup.h ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/Makefile.am =================================================================== --- trunk/current/src/client/Makefile.am (rev 0) +++ trunk/current/src/client/Makefile.am 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,7 @@ +INCLUDES = $(all_includes) +METASOURCES = AUTO +SUBDIRS = logic state +lib_LTLIBRARIES = libClient.la +libClient_la_SOURCES = GameStateManager.cpp GraphicsSetup.cpp OpenGateApp.cpp +noinst_HEADERS = GameStateManager.h GameState.h Global.h OpenGateApp.h \ + GraphicsSetup.h Property changes on: trunk/current/src/client/Makefile.am ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/OpenGateApp.cpp =================================================================== --- trunk/current/src/client/OpenGateApp.cpp (rev 0) +++ trunk/current/src/client/OpenGateApp.cpp 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,62 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + + +#include "OpenGateApp.h" +#include "GameStateManager.h" + +// Game states +#include "state/IntroState.h" + +//--------------------------------------------------------------------------------// +/** Default constructor. */ +OpenGateApp::OpenGateApp() +{} + +//--------------------------------------------------------------------------------// +/** Default destructor. */ +OpenGateApp::~OpenGateApp() +{} + +//--------------------------------------------------------------------------------// +/** go() starts the OpenGate client. */ +void OpenGateApp::go() +{ + // Initialise Ogre and CEGUI + if (!initGraphics(&mFramework)) + return; + + // Start the GameStateManager and register the game states + setupGameStateManager(); + + // Start the first game state + GameStateMgr.start(GameStateMgr.findByName("IntroState")); +} + +//--------------------------------------------------------------------------------// +/** Create the GameStateManager and register the game states. */ +void OpenGateApp::setupGameStateManager() +{ + // Create the gamestate manager + GameStateManager GameStateMgr(&mFramework); + + // Create and register game states + IntroState::Create(&GameStateMgr,"IntroState"); +} Property changes on: trunk/current/src/client/OpenGateApp.cpp ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/OpenGateApp.h =================================================================== --- trunk/current/src/client/OpenGateApp.h (rev 0) +++ trunk/current/src/client/OpenGateApp.h 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,56 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef OPENGATEAPP_H +#define OPENGATEAPP_H + +#include "Global.h" +#include "GraphicsSetup.h" + +/** \class OpenGateApp + The OpenGateApp class handles the creation and destruction of singleton objects, + populates the framework_info structure, registers the game states and + starts the first game state. It does all this and more by simply calling + go()... */ +class OpenGateApp : private GraphicsSetup + { + // Attributes ------------------------------------------------------------------------------ + private: + /** Information structure to facilitate the transfer of information between + GameState states. */ + framework_info mFramework; + + // Methods --------------------------------------------------------------------------------- + public: + /** Default constructor. */ + OpenGateApp(); + + /** Default destructor. */ + ~OpenGateApp(); + + /** go() starts the OpenGate client. */ + void go(); + + private: + /** Create the GameStateManager and register the game states. */ + void setupGameStateManager(); + }; + +#endif Property changes on: trunk/current/src/client/OpenGateApp.h ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/logic/Makefile.am =================================================================== --- trunk/current/src/client/logic/Makefile.am (rev 0) +++ trunk/current/src/client/logic/Makefile.am 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,2 @@ +INCLUDES = $(all_includes) +METASOURCES = AUTO Property changes on: trunk/current/src/client/logic/Makefile.am ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/state/IntroState.cpp =================================================================== --- trunk/current/src/client/state/IntroState.cpp (rev 0) +++ trunk/current/src/client/state/IntroState.cpp 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,31 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "IntroState.h" + +//--------------------------------------------------------------------------------// +/** Game state enter code. */ +void IntroState::enter() +{} + +//--------------------------------------------------------------------------------// +/** Game state exit code. */ +void IntroState::exit() +{} Property changes on: trunk/current/src/client/state/IntroState.cpp ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/state/IntroState.h =================================================================== --- trunk/current/src/client/state/IntroState.h (rev 0) +++ trunk/current/src/client/state/IntroState.h 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,59 @@ +/*************************************************************************** + * Copyright (C) 2006 by OpenGate development team * + * Qrstuvw ab...@sl... * + * * + * This program 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. * + * * + * This program 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 this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + + +#ifndef INTROSTATE_H +#define INTROSTATE_H + +#include "GameState.h" + +class IntroState : public GameState + { + // Self-creation & registering function ---------------------------------------------------- + public: + /** Create and register the state so that it can be managed by the GameStateManager. */ + static void Create(GameStateListener *parent,const Ogre::String name) + { + IntroState *myGameState = new IntroState(); + myGameState->parent = parent; + parent->ManageGameState(name,myGameState); + } + + // Attributes ------------------------------------------------------------------------------ + + // Methods --------------------------------------------------------------------------------- + public: + /** Default constructor. */ + IntroState() + {} + + /** Default destructor. */ + ~IntroState() + {} + + /** Game state enter code. */ + void enter(); + + /** Game state exit code. */ + void exit(); + + }; + +#endif Property changes on: trunk/current/src/client/state/IntroState.h ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/client/state/Makefile.am =================================================================== --- trunk/current/src/client/state/Makefile.am (rev 0) +++ trunk/current/src/client/state/Makefile.am 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,5 @@ +INCLUDES = $(all_includes) +METASOURCES = AUTO +lib_LTLIBRARIES = libStates.la +noinst_HEADERS = IntroState.h +libStates_la_SOURCES = IntroState.cpp Property changes on: trunk/current/src/client/state/Makefile.am ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/common/Makefile.am =================================================================== --- trunk/current/src/common/Makefile.am (rev 0) +++ trunk/current/src/common/Makefile.am 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,2 @@ +INCLUDES = $(all_includes) +METASOURCES = AUTO Property changes on: trunk/current/src/common/Makefile.am ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/deps/Makefile.am =================================================================== --- trunk/current/src/deps/Makefile.am (rev 0) +++ trunk/current/src/deps/Makefile.am 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,3 @@ +INCLUDES = $(all_includes) +METASOURCES = AUTO +SUBDIRS = tinyxml Property changes on: trunk/current/src/deps/Makefile.am ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/deps/tinyxml/Makefile.am =================================================================== --- trunk/current/src/deps/tinyxml/Makefile.am (rev 0) +++ trunk/current/src/deps/tinyxml/Makefile.am 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,4 @@ +INCLUDES = $(all_includes) +METASOURCES = AUTO +lib_LTLIBRARIES = libTinyXML.la +libTinyXML_la_SOURCES = tinyxml.cpp tinyxmlerror.cpp tinyxmlparser.cpp Property changes on: trunk/current/src/deps/tinyxml/Makefile.am ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/current/src/deps/tinyxml/tinyxml.cpp =================================================================== --- trunk/current/src/deps/tinyxml/tinyxml.cpp (rev 0) +++ trunk/current/src/deps/tinyxml/tinyxml.cpp 2006-12-10 01:06:16 UTC (rev 290) @@ -0,0 +1,1866 @@ +/* +www.sourceforge.net/projects/tinyxml +Original code (2.0 and earlier )copyright (c) 2000-2006 Lee Thomason (www.grinninglizard.com) + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any +damages arising from the use of this software. + +Permission is granted to anyone to use this software for any +purpose, including commercial applications, and to alter it and +redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must +not claim that you wrote the original software. If you use this +software in a product, an acknowledgment in the product documentation +would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and +must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source +distribution. +*/ + +#include <ctype.h> + +#ifdef TIXML_USE_STL +#include <sstream> +#include <iostream> +#endif + +#include "tinyxml.h" + + +bool TiXmlBase::condenseWhiteSpace = true; + +void TiXmlBase::PutString( const TIXML_STRING& str, TIXML_STRING* outString ) +{ + int i=0; + + while( i<(int)str.length() ) + { + unsigned char c = (unsigned char) str[i]; + + if ( c == '&' + && i < ( (int)str.length() - 2 ) + && str[i+1] == '#' + && str[i+2] == 'x' ) + { + // Hexadecimal character reference. + // Pass through unchanged. + // © -- copyright symbol, for example. + // + // The -1 is a bug fix from Rob Laveaux. It keeps + // an overflow from happening if there is no ';'. + // There are actually 2 ways to exit this loop - + // while fails (error case) and break (semicolon found). + // However, there is no mechanism (currently) for + // this function to return an error. + while ( i<(int)str.length()-1 ) + { + outString->append( str.c_str() + i, 1 ); + ++i; + if ( str[i] == ';' ) + break; + } + } + else if ( c == '&' ) + { + outString->append( entity[0].str, entity[0].strLength ); + ++i; + } + else if ( c == '<' ) + { + outString->append( entity[1].str, entity[1].strLength ); + ++i; + } + else if ( c == '>' ) + { + outString->append( entity[2].str, entity[2].strLength ); + ++i; + } + else if ( c == '\"' ) + { + outString->append( entity[3].str, entity[3].strLength ); + ++i; + } + else if ( c == '\'' ) + { + outString->append( entity[4].str, entity[4].strLength ); + ++i; + } + else if ( c < 32 ) + { + // Easy pass at non-alpha/numeric/symbol + // Below 32 is symbolic. + char buf[ 32 ]; + + #if defined(TIXML_SNPRINTF) + TIXML_SNPRINTF( buf, sizeof(buf), "&#x%02X;", (unsigned) ( c & 0xff ) ); + #else + sprintf( buf, "&#x%02X;", (unsigned) ( c & 0xff ) ); + #endif + + //*ME: warning C4267: convert 'size_t' to 'int' + //*ME: Int-Cast to make compiler happy ... + outString->append( buf, (int)strlen( buf ) ); + ++i; + } + else + { + //char realc = (char) c; + //outString->append( &realc, 1 ); + *outString += (char) c; // somewhat more efficient function call. + ++i; + } + } +} + + +TiXmlNode::TiXmlNode( NodeType _type ) : TiXmlBase() +{ + parent = 0; + type = _type; + firstChild = 0; + lastChild = 0; + prev = 0; + next = 0; +} + + +TiXmlNode::~TiXmlNode() +{ + TiXmlNode* node = firstChild; + TiXmlNode* temp = 0; + + while ( node ) + { + temp = node; + node = node->next; + delete temp; + } +} + + +void TiXmlNode::CopyTo( TiXmlNode* target ) const +{ + target->SetValue (value.c_str() ); + target->userData = userData; +} + + +void TiXmlNode::Clear() +{ + TiXmlNode* node = firstChild; + TiXmlNode* temp = 0; + + while ( node ) + { + temp = node; + node = node->next; + delete temp; + } + + firstChild = 0; + lastChild = 0; +} + + +TiXmlNode* TiXmlNode::LinkEndChild( TiXmlNode* node ) +{ + assert( node->parent == 0 || node->parent == this ); + assert( node->GetDocument() == 0 || node->GetDocument() == this->GetDocument() ); + + if ( node->Type() == TiXmlNode::DOCUMENT ) + { + delete node; + if ( GetDocument() ) GetDocument()->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return 0; + } + + node->parent = this; + + node->prev = lastChild; + node->next = 0; + + if ( lastChild ) + lastChild->next = node; + else + firstChild = node; // it was an empty list. + + lastChild = node; + return node; +} + + +TiXmlNode* TiXmlNode::InsertEndChild( const TiXmlNode& addThis ) +{ + if ( addThis.Type() == TiXmlNode::DOCUMENT ) + { + if ( GetDocument() ) GetDocument()->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return 0; + } + TiXmlNode* node = addThis.Clone(); + if ( !node ) + return 0; + + return LinkEndChild( node ); +} + + +TiXmlNode* TiXmlNode::InsertBeforeChild( TiXmlNode* beforeThis, const TiXmlNode& addThis ) +{ + if ( !beforeThis || beforeThis->parent != this ) { + return 0; + } + if ( addThis.Type() == TiXmlNode::DOCUMENT ) + { + if ( GetDocument() ) GetDocument()->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return 0; + } + + TiXmlNode* node = addThis.Clone(); + if ( !node ) + return 0; + node->parent = this; + + node->next = beforeThis; + node->prev = beforeThis->prev; + if ( beforeThis->prev ) + { + beforeThis->prev->next = node; + } + else + { + assert( firstChild == beforeThis ); + firstChild = node; + } + beforeThis->prev = node; + return node; +} + + +TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) +{ + if ( !afterThis || afterThis->parent != this ) { + return 0; + } + if ( addThis.Type() == TiXmlNode::DOCUMENT ) + { + if ( GetDocument() ) GetDocument()->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return 0; + } + + TiXmlNode* node = addThis.Clone(); + if ( !node ) + return 0; + node->parent = this; + + node->prev = afterThis; + node->next = afterThis->next; + if ( afterThis->next ) + { + afterThis->next->prev = node; + } + else + { + assert( lastChild == afterThis ); + lastChild = node; + } + afterThis->next = node; + return node; +} + + +TiXmlNode* TiXmlNode::ReplaceChild( TiXmlNode* replaceThis, const TiXmlNode& withThis ) +{ + if ( replaceThis->parent != this ) + return 0; + + TiXmlNode* node = withThis.Clone(); + if ( !node ) + return 0; + + node->next = replaceThis->next; + node->prev = replaceThis->prev; + + if ( replaceThis->next ) + replaceThis->next->prev = node; + else + lastChild = node; + + if ( replaceThis->prev ) + replaceThis->prev->next = node; + else + firstChild = node; + + delete replaceThis; + node->parent = this; + return node; +} + + +bool TiXmlNode::RemoveChild( TiXmlNode* removeThis ) +{ + if ( removeThis->parent != this ) + { + assert( 0 ); + return false; + } + + if ( removeThis->next ) + removeThis->next->prev = removeThis->prev; + else + lastChild = removeThis->prev; + + if ( removeThis->prev ) + removeThis->prev->next = removeThis->next; + else + firstChild = removeThis->next; + + delete removeThis; + return true; +} + +const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const +{ + const TiXmlNode* node; + for ( node = firstChild; node; node = node->next ) + { + if ( strcmp( node->Value(), _value ) == 0 ) + return node; + } + return 0; +} + + +const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const +{ + const TiXmlNode* node; + for ( node = lastChild; node; node = node->prev ) + { + if ( strcmp( node->Value(), _value ) == 0 ) + return node; + } + return 0; +} + + +const TiXmlNode* TiXmlNode::IterateChildren( const TiXmlNode* previous ) const +{ + if ( !previous ) + { + return F... [truncated message content] |
From: <ult...@us...> - 2006-12-10 00:30:24
|
Revision: 289 http://svn.sourceforge.net/opengate/?rev=289&view=rev Author: ultrasick Date: 2006-12-09 16:30:25 -0800 (Sat, 09 Dec 2006) Log Message: ----------- removed a description text from jossh Modified Paths: -------------- trunk/data/engines/Money/money.xml Modified: trunk/data/engines/Money/money.xml =================================================================== --- trunk/data/engines/Money/money.xml 2006-12-10 00:29:31 UTC (rev 288) +++ trunk/data/engines/Money/money.xml 2006-12-10 00:30:25 UTC (rev 289) @@ -1,12 +1,10 @@ <?xml version="1.0"?> -<!DOCTYPE equipment SYSTEM "http://opengate.sourceforge.net/opengate.dtd"> <equipment type="Engine"> <!-- Naming --> <name>Money</name> <class>Gravity Driver</class> <faction>Solrain</faction> - <description>A fine installment from T&P Systems, the Money is a simple and effective engine. It provides a pilot with a good amount of thrust while taking up only a moderate amount of space. Although not appropriate for high speed pursuit or long distance travel, the Money will allow a pilot to explore and trade before investing in a more powerful engine.</description> <image>money.jpg</image> <model>money.wings</model> @@ -29,5 +27,4 @@ <required-component>Iron</required-component> <required-component>Titanium</required-component> <required-component>Gravitational Components</required-component> - -</equipment> +</equipment> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ult...@us...> - 2006-12-10 00:29:31
|
Revision: 288 http://svn.sourceforge.net/opengate/?rev=288&view=rev Author: ultrasick Date: 2006-12-09 16:29:31 -0800 (Sat, 09 Dec 2006) Log Message: ----------- just renaming some stuff Added Paths: ----------- trunk/data/ships/ trunk/data/ships/Conflux/ trunk/data/ships/Conflux/C-2/ trunk/data/ships/Octavius/ trunk/data/ships/Octavius/Apteryx/ trunk/data/ships/Octavius/Apteryx/octavius_apteryx.jpg trunk/data/ships/Octavius/Apteryx/octavius_apteryx.mesh trunk/data/ships/Octavius/Apteryx/octavius_apteryx.mesh.xml trunk/data/ships/Octavius/Apteryx/octavius_apteryx.wings trunk/data/ships/Octavius/Apteryx/octavius_apteryx.xml trunk/data/ships/Octavius/Apteryx/octavius_apteryx_auv.png trunk/data/ships/Octavius/Apteryx/octavius_apteryx_auv.svg trunk/data/ships/Octavius/Apteryx/octavius_apteryx_auv_org.png trunk/data/ships/Octavius/Condor/ trunk/data/ships/Octavius/Condor/octavius_condor.jpg trunk/data/ships/Octavius/Condor/octavius_condor.wings trunk/data/ships/Octavius/Condor/octavius_condor.xml trunk/data/ships/Octavius/Phoenix/ trunk/data/ships/Octavius/Phoenix/octavius_phoenix.jpg trunk/data/ships/Octavius/Phoenix/octavius_phoenix.wings trunk/data/ships/Octavius/Phoenix/octavius_phoenix.xml trunk/data/ships/Quantar/ trunk/data/ships/Quantar/Storm/ trunk/data/ships/Quantar/Storm/quantar_storm.jpg trunk/data/ships/Quantar/Storm/quantar_storm.mesh trunk/data/ships/Quantar/Storm/quantar_storm.mesh.xml trunk/data/ships/Quantar/Storm/quantar_storm.wings trunk/data/ships/Quantar/Storm/quantar_storm.xml trunk/data/ships/Quantar/Storm/quantar_storm_auv.png trunk/data/ships/Quantar/Storm/quantar_storm_auv.svg trunk/data/ships/Quantar/Storm/quantar_storm_auv_org.png trunk/data/ships/Quantar/Thunder/ trunk/data/ships/Quantar/Thunder/quantar_thunder.wings trunk/data/ships/Quantar/Typhoon/ trunk/data/ships/Quantar/Typhoon/quantar_typhoon.jpg trunk/data/ships/Quantar/Typhoon/quantar_typhoon.wings trunk/data/ships/Quantar/Typhoon/quantar_typhoon.xml trunk/data/ships/Solrain/ trunk/data/ships/Solrain/Intensity/ trunk/data/ships/Solrain/Intensity/solrain_intensity.jpg trunk/data/ships/Solrain/Intensity/solrain_intensity.wings trunk/data/ships/Solrain/Intensity/solrain_intensity.xml trunk/data/ships/Solrain/Pioneer/ trunk/data/ships/Solrain/Pioneer/solrain_pioneer.jpg trunk/data/ships/Solrain/Pioneer/solrain_pioneer.wings trunk/data/ships/Solrain/Pioneer/solrain_pioneer.xml trunk/data/ships/Solrain/Premia/ trunk/data/ships/Solrain/Premia/solrain_premia.jpg trunk/data/ships/Solrain/Premia/solrain_premia.wings trunk/data/ships/Solrain/Premia/solrain_premia.xml Added: trunk/data/ships/Octavius/Apteryx/octavius_apteryx.jpg =================================================================== (Binary files differ) Property changes on: trunk/data/ships/Octavius/Apteryx/octavius_apteryx.jpg ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/ships/Octavius/Apteryx/octavius_apteryx.mesh =================================================================== (Binary files differ) Property changes on: trunk/data/ships/Octavius/Apteryx/octavius_apteryx.mesh ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/ships/Octavius/Apteryx/octavius_apteryx.mesh.xml =================================================================== --- trunk/data/ships/Octavius/Apteryx/octavius_apteryx.mesh.xml (rev 0) +++ trunk/data/ships/Octavius/Apteryx/octavius_apteryx.mesh.xml 2006-12-10 00:29:31 UTC (rev 288) @@ -0,0 +1,1247 @@ +<?xml version="1.0"?> +<mesh> + <materials> + <material name="octavius_apteryx_auv"> + <ambient red="0.000000" green="0.000000" blue="0.000000" alpha="1.000000"/> + <diffuse red="1.000000" green="1.000000" blue="1.000000" alpha="1.000000"/> + <specular red="0.000000" green="0.000000" blue="0.000000" alpha="1.000000"/> + <shininess value="0"/> + <texturelayers> + <texturelayer texture="octavius_apteryx_auv.png"/> + </texturelayers> + </material> + </materials> + <sharedgeometry vertexcount="0"/> + <submeshes> + <submesh material="octavius_apteryx_auv" usesharedvertices="false" use32bitindexes="false" operationtype="triangle_list"> + <faces count="232"> + <face v1="48" v2="44" v3="55"/> + <face v1="48" v2="55" v3="52"/> + <face v1="15" v2="6" v3="33"/> + <face v1="15" v2="33" v3="38"/> + <face v1="17" v2="56" v3="57"/> + <face v1="17" v2="57" v3="43"/> + <face v1="37" v2="35" v3="40"/> + <face v1="37" v2="40" v3="42"/> + <face v1="109" v2="108" v3="37"/> + <face v1="37" v2="42" v3="109"/> + <face v1="43" v2="4" v3="0"/> + <face v1="0" v2="17" v3="43"/> + <face v1="41" v2="54" v3="53"/> + <face v1="46" v2="41" v3="53"/> + <face v1="23" v2="27" v3="54"/> + <face v1="45" v2="42" v3="40"/> + <face v1="40" v2="47" v3="45"/> + <face v1="55" v2="53" v3="31"/> + <face v1="31" v2="29" v3="55"/> + <face v1="49" v2="109" v3="42"/> + <face v1="42" v2="45" v3="49"/> + <face v1="50" v2="8" v3="10"/> + <face v1="10" v2="51" v3="50"/> + <face v1="10" v2="13" v3="51"/> + <face v1="52" v2="50" v3="38"/> + <face v1="38" v2="48" v3="52"/> + <face v1="52" v2="55" v3="29"/> + <face v1="29" v2="2" v3="52"/> + <face v1="31" v2="53" v3="54"/> + <face v1="27" v2="31" v3="54"/> + <face v1="46" v2="53" v3="55"/> + <face v1="44" v2="46" v3="55"/> + <face v1="50" v2="51" v3="15"/> + <face v1="15" v2="38" v3="50"/> + <face v1="50" v2="52" v3="2"/> + <face v1="2" v2="8" v3="50"/> + <face v1="54" v2="41" v3="56"/> + <face v1="13" v2="15" v3="51"/> + <face v1="56" v2="17" v3="23"/> + <face v1="56" v2="23" v3="54"/> + <face v1="56" v2="41" v3="36"/> + <face v1="36" v2="57" v3="56"/> + <face v1="28" v2="68" v3="66"/> + <face v1="32" v2="28" v3="66"/> + <face v1="61" v2="20" v3="21"/> + <face v1="21" v2="58" v3="61"/> + <face v1="70" v2="24" v3="59"/> + <face v1="59" v2="22" v3="70"/> + <face v1="25" v2="18" v3="61"/> + <face v1="25" v2="61" v3="60"/> + <face v1="18" v2="80" v3="20"/> + <face v1="18" v2="20" v3="61"/> + <face v1="30" v2="62" v3="64"/> + <face v1="30" v2="64" v3="3"/> + <face v1="32" v2="66" v3="62"/> + <face v1="62" v2="30" v3="32"/> + <face v1="71" v2="68" v3="28"/> + <face v1="28" v2="26" v3="71"/> + <face v1="1" v2="5" v3="85"/> + <face v1="1" v2="85" v3="83"/> + <face v1="3" v2="64" v3="73"/> + <face v1="9" v2="3" v3="73"/> + <face v1="73" v2="75" v3="11"/> + <face v1="11" v2="9" v3="73"/> + <face v1="76" v2="78" v3="14"/> + <face v1="14" v2="12" v3="76"/> + <face v1="81" v2="19" v3="1"/> + <face v1="1" v2="83" v3="81"/> + <face v1="102" v2="98" v3="97"/> + <face v1="97" v2="103" v3="102"/> + <face v1="16" v2="14" v3="78"/> + <face v1="16" v2="78" v3="87"/> + <face v1="89" v2="7" v3="16"/> + <face v1="16" v2="87" v3="89"/> + <face v1="82" v2="93" v3="94"/> + <face v1="82" v2="94" v3="95"/> + <face v1="20" v2="80" v3="70"/> + <face v1="22" v2="20" v3="70"/> + <face v1="91" v2="92" v3="90"/> + <face v1="90" v2="88" v3="91"/> + <face v1="86" v2="93" v3="82"/> + <face v1="82" v2="84" v3="86"/> + <face v1="107" v2="106" v3="97"/> + <face v1="97" v2="98" v3="107"/> + <face v1="103" v2="101" v3="65"/> + <face v1="65" v2="63" v3="103"/> + <face v1="102" v2="104" v3="95"/> + <face v1="95" v2="98" v3="102"/> + <face v1="101" v2="100" v3="74"/> + <face v1="74" v2="65" v3="101"/> + <face v1="88" v2="79" v3="99"/> + <face v1="77" v2="74" v3="100"/> + <face v1="77" v2="100" v3="99"/> + <face v1="67" v2="102" v3="103"/> + <face v1="63" v2="67" v3="103"/> + <face v1="96" v2="101" v3="103"/> + <face v1="97" v2="96" v3="103"/> + <face v1="96" v2="91" v3="100"/> + <face v1="96" v2="100" v3="101"/> + <face v1="88" v2="99" v3="100"/> + <face v1="91" v2="88" v3="100"/> + <face v1="69" v2="72" v3="104"/> + <face v1="69" v2="104" v3="102"/> + <face v1="67" v2="69" v3="102"/> + <face v1="79" v2="77" v3="99"/> + <face v1="95" v2="94" v3="107"/> + <face v1="95" v2="107" v3="98"/> + <face v1="97" v2="106" v3="105"/> + <face v1="96" v2="97" v3="105"/> + <face v1="105" v2="92" v3="91"/> + <face v1="91" v2="96" v3="105"/> + <face v1="72" v2="82" v3="95"/> + <face v1="72" v2="95" v3="104"/> + <face v1="34" v2="108" v3="109"/> + <face v1="39" v2="34" v3="109"/> + <face v1="49" v2="39" v3="109"/> + <face v1="155" v2="144" v3="148"/> + <face v1="148" v2="152" v3="155"/> + <face v1="139" v2="33" v3="6"/> + <face v1="6" v2="121" v3="139"/> + <face v1="57" v2="156" v3="123"/> + <face v1="43" v2="57" v3="123"/> + <face v1="141" v2="35" v3="37"/> + <face v1="37" v2="143" v3="141"/> + <face v1="143" v2="37" v3="108"/> + <face v1="108" v2="197" v3="143"/> + <face v1="110" v2="4" v3="43"/> + <face v1="43" v2="123" v3="110"/> + <face v1="154" v2="142" v3="146"/> + <face v1="146" v2="153" v3="154"/> + <face v1="133" v2="129" v3="154"/> + <face v1="141" v2="143" v3="145"/> + <face v1="141" v2="145" v3="147"/> + <face v1="137" v2="153" v3="155"/> + <face v1="135" v2="137" v3="155"/> + <face v1="197" v2="149" v3="145"/> + <face v1="143" v2="197" v3="145"/> + <face v1="151" v2="116" v3="114"/> + <face v1="114" v2="150" v3="151"/> + <face v1="119" v2="116" v3="151"/> + <face v1="139" v2="150" v3="152"/> + <face v1="148" v2="139" v3="152"/> + <face v1="155" v2="152" v3="112"/> + <face v1="135" v2="155" v3="112"/> + <face v1="154" v2="153" v3="137"/> + <face v1="137" v2="133" v3="154"/> + <face v1="155" v2="153" v3="146"/> + <face v1="146" v2="144" v3="155"/> + <face v1="121" v2="151" v3="150"/> + <face v1="139" v2="121" v3="150"/> + <face v1="112" v2="152" v3="150"/> + <face v1="114" v2="112" v3="150"/> + <face v1="142" v2="154" v3="156"/> + <face v1="121" v2="119" v3="151"/> + <face v1="129" v2="123" v3="156"/> + <face v1="156" v2="154" v3="129"/> + <face v1="36" v2="142" v3="156"/> + <face v1="57" v2="36" v3="156"/> + <face v1="165" v2="167" v3="134"/> + <face v1="134" v2="138" v3="165"/> + <face v1="127" v2="126" v3="160"/> + <face v1="127" v2="160" v3="157"/> + <face v1="130" v2="169" v3="128"/> + <face v1="128" v2="158" v3="130"/> + <face v1="160" v2="124" v3="131"/> + <face v1="131" v2="159" v3="160"/> + <face v1="126" v2="179" v3="124"/> + <face v1="124" v2="160" v3="126"/> + <face v1="113" v2="163" v3="161"/> + <face v1="161" v2="136" v3="113"/> + <face v1="161" v2="165" v3="138"/> + <face v1="136" v2="161" v3="138"/> + <face v1="134" v2="167" v3="170"/> + <face v1="132" v2="134" v3="170"/> + <face v1="85" v2="5" v3="111"/> + <face v1="85" v2="111" v3="182"/> + <face v1="172" v2="163" v3="113"/> + <face v1="113" v2="115" v3="172"/> + <face v1="117" v2="174" v3="172"/> + <face v1="115" v2="117" v3="172"/> + <face v1="120" v2="177" v3="175"/> + <face v1="118" v2="120" v3="175"/> + <face v1="111" v2="125" v3="180"/> + <face v1="111" v2="180" v3="182"/> + <face v1="189" v2="190" v3="194"/> + <face v1="189" v2="194" v3="195"/> + <face v1="177" v2="120" v3="122"/> + <face v1="122" v2="184" v3="177"/> + <face v1="7" v2="89" v3="184"/> + <face v1="7" v2="184" v3="122"/> + <face v1="187" v2="94" v3="93"/> + <face v1="93" v2="181" v3="187"/> + <face v1="169" v2="179" v3="126"/> + <face v1="126" v2="128" v3="169"/> + <face v1="90" v2="92" v3="186"/> + <face v1="90" v2="186" v3="185"/> + <face v1="181" v2="93" v3="86"/> + <face v1="86" v2="183" v3="181"/> + <face v1="189" v2="106" v3="107"/> + <face v1="107" v2="190" v3="189"/> + <face v1="164" v2="193" v3="195"/> + <face v1="162" v2="164" v3="195"/> + <face v1="190" v2="187" v3="196"/> + <face v1="190" v2="196" v3="194"/> + <face v1="173" v2="192" v3="193"/> + <face v1="164" v2="173" v3="193"/> + <face v1="178" v2="185" v3="191"/> + <face v1="192" v2="173" v3="176"/> + <face v1="176" v2="191" v3="192"/> + <face v1="195" v2="194" v3="166"/> + <face v1="166" v2="162" v3="195"/> + <face v1="195" v2="193" v3="188"/> + <face v1="188" v2="189" v3="195"/> + <face v1="192" v2="186" v3="188"/> + <face v1="188" v2="193" v3="192"/> + <face v1="191" v2="185" v3="186"/> + <face v1="186" v2="192" v3="191"/> + <face v1="171" v2="168" v3="196"/> + <face v1="194" v2="196" v3="168"/> + <face v1="168" v2="166" v3="194"/> + <face v1="176" v2="178" v3="191"/> + <face v1="107" v2="94" v3="187"/> + <face v1="107" v2="187" v3="190"/> + <face v1="105" v2="106" v3="189"/> + <face v1="105" v2="189" v3="188"/> + <face v1="186" v2="92" v3="105"/> + <face v1="105" v2="188" v3="186"/> + <face v1="187" v2="181" v3="171"/> + <face v1="171" v2="196" v3="187"/> + <face v1="197" v2="108" v3="34"/> + <face v1="34" v2="140" v3="197"/> + <face v1="140" v2="149" v3="197"/> + </faces> + <geometry vertexcount="198"> + <vertexbuffer positions="true" normals="true" colours_diffuse="false" texture_coords="1" texture_coord_dimensions_0="2"> + <vertex> + <position x="-0.791543" y="0.066844" z="0.061540"/> + <normal x="-0.862227" y="0.242887" z="0.444489"/> + <texcoord u="0.915236" v="0.125134"/> + </vertex> + <vertex> + <position x="-0.791543" y="0.066844" z="0.061540"/> + <normal x="-0.862227" y="0.242887" z="0.444489"/> + <texcoord u="0.892077" v="0.050693"/> + </vertex> + <vertex> + <position x="0.283294" y="-0.254422" z="0.991267"/> + <normal x="-0.004394" y="0.416505" z="0.909123"/> + <texcoord u="0.483717" v="0.558810"/> + </vertex> + <vertex> + <position x="0.283294" y="-0.254422" z="0.991267"/> + <normal x="-0.004394" y="0.416505" z="0.909123"/> + <texcoord u="0.336625" v="0.947344"/> + </vertex> + <vertex> + <position x="-0.791543" y="0.066844" z="-0.000121"/> + <normal x="-0.895922" y="0.444212" z="0.000000"/> + <texcoord u="0.939793" v="0.124796"/> + </vertex> + <vertex> + <position x="-0.791543" y="0.066844" z="-0.000121"/> + <normal x="-0.895922" y="0.444212" z="0.000000"/> + <texcoord u="0.870397" v="0.063053"/> + </vertex> + <vertex> + <position x="1.178863" y="0.233637" z="-0.000121"/> + <normal x="0.630650" y="0.776067" z="-0.000000"/> + <texcoord u="0.933370" v="0.949252"/> + </vertex> + <vertex> + <position x="1.178863" y="0.233637" z="-0.000121"/> + <normal x="0.630650" y="0.776067" z="-0.000000"/> + <texcoord u="0.851139" v="0.051437"/> + </vertex> + <vertex> + <position x="0.849464" y="-0.140468" z="0.878599"/> + <normal x="0.180045" y="0.432299" z="0.883573"/> + <texcoord u="0.537993" v="0.792215"/> + </vertex> + <vertex> + <position x="0.849464" y="-0.140468" z="0.878599"/> + <normal x="0.180045" y="0.432299" z="0.883573"/> + <texcoord u="0.481860" v="0.950392"/> + </vertex> + <vertex> + <position x="1.231654" y="-0.032411" z="0.707710"/> + <normal x="0.408566" y="0.458115" z="0.789433"/> + <texcoord u="0.611671" v="0.951961"/> + </vertex> + <vertex> + <position x="1.231654" y="-0.032411" z="0.707710"/> + <normal x="0.408566" y="0.458115" z="0.789433"/> + <texcoord u="0.588611" v="0.956403"/> + </vertex> + <vertex> + <position x="1.231654" y="-0.032411" z="0.707710"/> + <normal x="0.408566" y="0.458115" z="0.789433"/> + <texcoord u="0.544984" v="0.179350"/> + </vertex> + <vertex> + <position x="1.325066" y="0.135811" z="0.513532"/> + <normal x="0.662584" y="0.647362" z="0.376702"/> + <texcoord u="0.713995" v="0.995251"/> + </vertex> + <vertex> + <position x="1.325066" y="0.135811" z="0.513532"/> + <normal x="0.662584" y="0.647362" z="0.376702"/> + <texcoord u="0.627203" v="0.101915"/> + </vertex> + <vertex> + <position x="1.179518" y="0.233637" z="0.260430"/> + <normal x="0.512599" y="0.856673" z="0.057909"/> + <texcoord u="0.827485" v="0.942344"/> + </vertex> + <vertex> + <position x="1.179518" y="0.233637" z="0.260430"/> + <normal x="0.512599" y="0.856673" z="0.057909"/> + <texcoord u="0.743496" v="0.050336"/> + </vertex> + <vertex> + <position x="-0.602022" y="0.105535" z="0.164638"/> + <normal x="-0.354774" y="0.934589" z="-0.026055"/> + <texcoord u="0.875234" v="0.202728"/> + </vertex> + <vertex> + <position x="-0.602022" y="0.105535" z="0.164638"/> + <normal x="-0.354774" y="0.934589" z="-0.026055"/> + <texcoord u="0.466258" v="0.010438"/> + </vertex> + <vertex> + <position x="-0.602022" y="0.105535" z="0.164638"/> + <normal x="-0.354774" y="0.934589" z="-0.026055"/> + <texcoord u="0.976829" v="0.024487"/> + </vertex> + <vertex> + <position x="-1.311399" y="-0.072724" z="0.263593"/> + <normal x="-0.708114" y="-0.272696" z="-0.651315"/> + <texcoord u="0.475824" v="0.204685"/> + </vertex> + <vertex> + <position x="-1.311362" y="-0.072724" z="0.393471"/> + <normal x="-0.720778" y="-0.205699" z="0.661942"/> + <texcoord u="0.503976" v="0.224142"/> + </vertex> + <vertex> + <position x="-1.311362" y="-0.072724" z="0.393471"/> + <normal x="-0.720778" y="-0.205699" z="0.661942"/> + <texcoord u="0.445009" v="0.219570"/> + </vertex> + <vertex> + <position x="-0.578689" y="0.105535" z="0.490485"/> + <normal x="-0.282504" y="0.821994" z="0.494486"/> + <texcoord u="0.744245" v="0.212145"/> + </vertex> + <vertex> + <position x="-0.578689" y="0.105535" z="0.490485"/> + <normal x="-0.282504" y="0.821994" z="0.494486"/> + <texcoord u="0.292600" v="0.089296"/> + </vertex> + <vertex> + <position x="-0.578689" y="0.105535" z="0.490485"/> + <normal x="-0.282504" y="0.821994" z="0.494486"/> + <texcoord u="0.552230" v="0.006162"/> + </vertex> + <vertex> + <position x="-0.578689" y="0.105535" z="0.490485"/> + <normal x="-0.282504" y="0.821994" z="0.494486"/> + <texcoord u="0.020979" v="0.940013"/> + </vertex> + <vertex> + <position x="-0.431603" y="-0.011715" z="0.688577"/> + <normal x="-0.335300" y="0.627230" z="0.702962"/> + <texcoord u="0.651395" v="0.271757"/> + </vertex> + <vertex> + <position x="-0.431603" y="-0.011715" z="0.688577"/> + <normal x="-0.335300" y="0.627230" z="0.702962"/> + <texcoord u="0.101206" v="0.938647"/> + </vertex> + <vertex> + <position x="-0.005923" y="-0.253867" z="0.945840"/> + <normal x="-0.215231" y="0.418904" z="0.882154"/> + <texcoord u="0.503086" v="0.441213"/> + </vertex> + <vertex> + <position x="-0.005923" y="-0.253867" z="0.945840"/> + <normal x="-0.215231" y="0.418904" z="0.882154"/> + <texcoord u="0.259691" v="0.950972"/> + </vertex> + <vertex> + <position x="-0.282346" y="-0.131034" z="0.809969"/> + <normal x="-0.305724" y="0.498475" z="0.811206"/> + <texcoord u="0.581318" v="0.330903"/> + </vertex> + <vertex> + <position x="-0.282346" y="-0.131034" z="0.809969"/> + <normal x="-0.305724" y="0.498475" z="0.811206"/> + <texcoord u="0.167826" v="0.945690"/> + </vertex> + <vertex> + <position x="0.427560" y="0.266449" z="-0.000121"/> + <normal x="0.158466" y="0.987364" z="0.000000"/> + <texcoord u="0.954115" v="0.643701"/> + </vertex> + <vertex> + <position x="0.427560" y="0.266449" z="-0.000121"/> + <normal x="0.158466" y="0.987364" z="0.000000"/> + <texcoord u="0.960972" v="0.615165"/> + </vertex> + <vertex> + <position x="-0.371604" y="0.156069" z="-0.000121"/> + <normal x="-0.349145" y="0.937069" z="0.000000"/> + <texcoord u="0.956819" v="0.305634"/> + </vertex> + <vertex> + <position x="-0.371604" y="0.156069" z="-0.000121"/> + <normal x="-0.349145" y="0.937069" z="0.000000"/> + <texcoord u="0.942056" v="0.295582"/> + </vertex> + <vertex> + <position x="-0.070611" y="0.334507" z="-0.000121"/> + <normal x="-0.238609" y="0.971116" z="0.000000"/> + <texcoord u="0.965629" v="0.431512"/> + </vertex> + <vertex> + <position x="0.427466" y="0.271987" z="0.164532"/> + <normal x="0.152720" y="0.972255" z="0.177192"/> + <texcoord u="0.887184" v="0.639022"/> + </vertex> + <vertex> + <position x="0.427466" y="0.271987" z="0.164532"/> + <normal x="0.152720" y="0.972255" z="0.177192"/> + <texcoord u="0.901091" v="0.612148"/> + </vertex> + <vertex> + <position x="-0.371020" y="0.156069" z="0.164430"/> + <normal x="-0.318105" y="0.937800" z="0.139068"/> + <texcoord u="0.897639" v="0.309841"/> + </vertex> + <vertex> + <position x="-0.371020" y="0.156069" z="0.164430"/> + <normal x="-0.318105" y="0.937800" z="0.139068"/> + <texcoord u="0.876854" v="0.296815"/> + </vertex> + <vertex> + <position x="-0.071017" y="0.325693" z="0.201946"/> + <normal x="-0.241639" y="0.944523" z="0.222458"/> + <texcoord u="0.893990" v="0.432495"/> + </vertex> + <vertex> + <position x="-0.603193" y="0.105535" z="-0.000121"/> + <normal x="-0.214827" y="0.976652" z="0.000000"/> + <texcoord u="0.940797" v="0.201395"/> + </vertex> + <vertex> + <position x="-0.037109" y="0.256817" z="0.342328"/> + <normal x="-0.204986" y="0.868910" z="0.450529"/> + <texcoord u="0.825011" v="0.442708"/> + </vertex> + <vertex> + <position x="-0.037109" y="0.256817" z="0.342328"/> + <normal x="-0.204986" y="0.868910" z="0.450529"/> + <texcoord u="0.837991" v="0.440663"/> + </vertex> + <vertex> + <position x="-0.190671" y="0.197420" z="0.298169"/> + <normal x="-0.331047" y="0.866647" z="0.373272"/> + <texcoord u="0.830014" v="0.374971"/> + </vertex> + <vertex> + <position x="-0.190671" y="0.197420" z="0.298169"/> + <normal x="-0.331047" y="0.866647" z="0.373272"/> + <texcoord u="0.849723" v="0.377177"/> + </vertex> + <vertex> + <position x="0.263659" y="0.284910" z="0.304981"/> + <normal x="0.098334" y="0.929720" z="0.354895"/> + <texcoord u="0.840669" v="0.564759"/> + </vertex> + <vertex> + <position x="0.263659" y="0.284910" z="0.304981"/> + <normal x="0.098334" y="0.929720" z="0.354895"/> + <texcoord u="0.852199" v="0.550263"/> + </vertex> + <vertex> + <position x="0.533752" y="0.176732" z="0.457637"/> + <normal x="0.056558" y="0.869820" z="0.490116"/> + <texcoord u="0.759156" v="0.674445"/> + </vertex> + <vertex> + <position x="1.090004" y="0.129608" z="0.525529"/> + <normal x="0.011018" y="0.865900" z="0.500095"/> + <texcoord u="0.713735" v="0.899320"/> + </vertex> + <vertex> + <position x="0.285411" y="0.165251" z="0.517465"/> + <normal x="0.018268" y="0.834686" z="0.550424"/> + <texcoord u="0.741432" v="0.571509"/> + </vertex> + <vertex> + <position x="-0.248043" y="0.126098" z="0.437624"/> + <normal x="-0.157557" y="0.878153" z="0.451690"/> + <texcoord u="0.766062" v="0.350803"/> + </vertex> + <vertex> + <position x="-0.442447" y="0.140193" z="0.316134"/> + <normal x="-0.079682" y="0.971810" z="0.221894"/> + <texcoord u="0.814639" v="0.269517"/> + </vertex> + <vertex> + <position x="-0.005184" y="0.140382" z="0.523476"/> + <normal x="-0.133369" y="0.806994" z="0.575303"/> + <texcoord u="0.738102" v="0.452849"/> + </vertex> + <vertex> + <position x="-0.454696" y="0.140193" z="0.164505"/> + <normal x="-0.207265" y="0.978248" z="0.008543"/> + <texcoord u="0.875993" v="0.263112"/> + </vertex> + <vertex> + <position x="-0.455493" y="0.140193" z="-0.000121"/> + <normal x="-0.207502" y="0.978235" z="0.000000"/> + <texcoord u="0.941534" v="0.261749"/> + </vertex> + <vertex> + <position x="-1.265887" y="0.007741" z="0.369034"/> + <normal x="-0.522413" y="0.738513" z="0.426243"/> + <texcoord u="0.512529" v="0.200448"/> + </vertex> + <vertex> + <position x="-1.265887" y="0.007741" z="0.369034"/> + <normal x="-0.522413" y="0.738513" z="0.426243"/> + <texcoord u="0.420237" v="0.224142"/> + </vertex> + <vertex> + <position x="-1.265887" y="0.007741" z="0.369034"/> + <normal x="-0.522413" y="0.738513" z="0.426243"/> + <texcoord u="0.516385" v="0.188342"/> + </vertex> + <vertex> + <position x="-1.266410" y="0.007741" z="0.285703"/> + <normal x="-0.535439" y="0.720331" z="-0.440940"/> + <texcoord u="0.494430" v="0.188017"/> + </vertex> + <vertex> + <position x="-0.005671" y="-0.336577" z="0.946622"/> + <normal x="-0.261013" y="-0.846779" z="0.463505"/> + <texcoord u="0.264416" v="0.971986"/> + </vertex> + <vertex> + <position x="-0.005671" y="-0.336577" z="0.946622"/> + <normal x="-0.261013" y="-0.846779" z="0.463505"/> + <texcoord u="0.453084" v="0.370693"/> + </vertex> + <vertex> + <position x="0.283972" y="-0.335710" z="0.990498"/> + <normal x="0.075320" y="-0.860119" z="0.504502"/> + <texcoord u="0.334474" v="0.967127"/> + </vertex> + <vertex> + <position x="0.283972" y="-0.335710" z="0.990498"/> + <normal x="0.075320" y="-0.860119" z="0.504502"/> + <texcoord u="0.469402" v="0.492076"/> + </vertex> + <vertex> + <position x="-0.281841" y="-0.248174" z="0.810231"/> + <normal x="-0.475620" y="-0.769463" z="0.426277"/> + <texcoord u="0.179655" v="0.975658"/> + </vertex> + <vertex> + <position x="-0.281841" y="-0.248174" z="0.810231"/> + <normal x="-0.475620" y="-0.769463" z="0.426277"/> + <texcoord u="0.385394" v="0.254748"/> + </vertex> + <vertex> + <position x="-0.482314" y="-0.163471" z="0.689092"/> + <normal x="-0.682538" y="-0.654681" z="0.324860"/> + <texcoord u="0.111772" v="0.983561"/> + </vertex> + <vertex> + <position x="-0.482314" y="-0.163471" z="0.689092"/> + <normal x="-0.682538" y="-0.654681" z="0.324860"/> + <texcoord u="0.325781" v="0.170191"/> + </vertex> + <vertex> + <position x="-0.573607" y="-0.080589" z="0.515674"/> + <normal x="-0.405159" y="-0.823338" z="0.397443"/> + <texcoord u="0.331410" v="0.058559"/> + </vertex> + <vertex> + <position x="-0.573607" y="-0.080589" z="0.515674"/> + <normal x="-0.405159" y="-0.823338" z="0.397443"/> + <texcoord u="0.050252" v="0.985830"/> + </vertex> + <vertex> + <position x="-0.573607" y="-0.080589" z="0.515674"/> + <normal x="-0.405159" y="-0.823338" z="0.397443"/> + <texcoord u="0.247583" v="0.129540"/> + </vertex> + <vertex> + <position x="0.847803" y="-0.240681" z="0.877129"/> + <normal x="0.306730" y="-0.831228" z="0.463656"/> + <texcoord u="0.475325" v="0.974061"/> + </vertex> + <vertex> + <position x="0.847803" y="-0.240681" z="0.877129"/> + <normal x="0.306730" y="-0.831228" z="0.463656"/> + <texcoord u="0.410195" v="0.728597"/> + </vertex> + <vertex> + <position x="1.230643" y="-0.157288" z="0.706861"/> + <normal x="0.570827" y="-0.795337" z="0.203950"/> + <texcoord u="0.579224" v="0.985830"/> + </vertex> + <vertex> + <position x="1.230643" y="-0.157288" z="0.706861"/> + <normal x="0.570827" y="-0.795337" z="0.203950"/> + <texcoord u="0.549889" v="0.230713"/> + </vertex> + <vertex> + <position x="1.230643" y="-0.157288" z="0.706861"/> + <normal x="0.570827" y="-0.795337" z="0.203950"/> + <texcoord u="0.331136" v="0.889002"/> + </vertex> + <vertex> + <position x="1.325053" y="-0.060818" z="0.504545"/> + <normal x="0.683047" y="-0.652150" z="-0.328857"/> + <texcoord u="0.638056" v="0.182510"/> + </vertex> + <vertex> + <position x="1.325053" y="-0.060818" z="0.504545"/> + <normal x="0.683047" y="-0.652150" z="-0.328857"/> + <texcoord u="0.237598" v="0.928740"/> + </vertex> + <vertex> + <position x="-0.601916" y="-0.086321" z="0.164963"/> + <normal x="-0.177452" y="-0.962913" z="-0.203248"/> + <texcoord u="0.417857" v="0.025031"/> + </vertex> + <vertex> + <position x="-0.601916" y="-0.086321" z="0.164963"/> + <normal x="-0.177452" y="-0.962913" z="-0.203248"/> + <texcoord u="0.987504" v="0.101398"/> + </vertex> + <vertex> + <position x="-0.601916" y="-0.086321" z="0.164963"/> + <normal x="-0.177452" y="-0.962913" z="-0.203248"/> + <texcoord u="0.100780" v="0.119386"/> + </vertex> + <vertex> + <position x="-0.744622" y="-0.031237" z="0.060971"/> + <normal x="-0.679846" y="-0.687867" z="0.254260"/> + <texcoord u="0.913671" v="0.089035"/> + </vertex> + <vertex> + <position x="-0.744622" y="-0.031237" z="0.060971"/> + <normal x="-0.679846" y="-0.687867" z="0.254260"/> + <texcoord u="0.050074" v="0.061108"/> + </vertex> + <vertex> + <position x="-0.744136" y="-0.031373" z="-0.000121"/> + <normal x="-0.555586" y="-0.831459" z="-0.000000"/> + <texcoord u="0.892258" v="0.101398"/> + </vertex> + <vertex> + <position x="-0.744136" y="-0.031373" z="-0.000121"/> + <normal x="-0.555586" y="-0.831459" z="-0.000000"/> + <texcoord u="0.024595" v="0.061902"/> + </vertex> + <vertex> + <position x="1.252286" y="0.029453" z="0.321083"/> + <normal x="0.581297" y="-0.725482" z="-0.368470"/> + <texcoord u="0.716668" v="0.139379"/> + </vertex> + <vertex> + <position x="1.252286" y="0.029453" z="0.321083"/> + <normal x="0.581297" y="-0.725482" z="-0.368470"/> + <texcoord u="0.151833" v="0.899561"/> + </vertex> + <vertex> + <position x="1.215574" y="0.029109" z="-0.000121"/> + <normal x="0.808009" y="-0.589170" z="-0.000000"/> + <texcoord u="0.850223" v="0.137284"/> + </vertex> + <vertex> + <position x="1.215574" y="0.029109" z="-0.000121"/> + <normal x="0.808009" y="-0.589170" z="-0.000000"/> + <texcoord u="0.017964" v="0.880308"/> + </vertex> + <vertex> + <position x="0.423115" y="-0.028434" z="0.200233"/> + <normal x="0.047525" y="-0.981266" z="-0.186702"/> + <texcoord u="0.111623" v="0.550171"/> + </vertex> + <vertex> + <position x="0.422496" y="-0.001132" z="-0.000121"/> + <normal x="0.033424" y="-0.999441" z="0.000000"/> + <texcoord u="0.026956" v="0.548379"/> + </vertex> + <vertex> + <position x="-0.602566" y="-0.016253" z="-0.000121"/> + <normal x="0.003744" y="-0.999993" z="-0.000000"/> + <texcoord u="0.025920" v="0.121308"/> + </vertex> + <vertex> + <position x="-0.354501" y="-0.012594" z="-0.000121"/> + <normal x="0.076039" y="-0.997105" z="0.000000"/> + <texcoord u="0.028302" v="0.224880"/> + </vertex> + <vertex> + <position x="-0.352498" y="-0.072312" z="0.165331"/> + <normal x="0.043431" y="-0.978338" z="-0.202405"/> + <texcoord u="0.101947" v="0.224074"/> + </vertex> + <vertex> + <position x="0.259900" y="-0.039404" z="0.283914"/> + <normal x="0.019138" y="-0.976984" z="-0.212453"/> + <texcoord u="0.147206" v="0.481777"/> + </vertex> + <vertex> + <position x="-0.002882" y="-0.050373" z="0.348501"/> + <normal x="0.038636" y="-0.971991" z="-0.231819"/> + <texcoord u="0.174975" v="0.372244"/> + </vertex> + <vertex> + <position x="-0.191413" y="-0.061343" z="0.276291"/> + <normal x="0.071078" y="-0.973477" z="-0.217463"/> + <texcoord u="0.146719" v="0.292920"/> + </vertex> + <vertex> + <position x="1.241464" y="-0.063918" z="0.513972"/> + <normal x="0.014536" y="-0.916011" z="-0.400890"/> + <texcoord u="0.241420" v="0.893734"/> + </vertex> + <vertex> + <position x="0.635459" y="-0.088291" z="0.538681"/> + <normal x="0.046983" y="-0.931948" z="-0.359535"/> + <texcoord u="0.254798" v="0.640132"/> + </vertex> + <vertex> + <position x="0.271936" y="-0.151717" z="0.637206"/> + <normal x="0.041648" y="-0.923898" z="-0.380365"/> + <texcoord u="0.302531" v="0.487618"/> + </vertex> + <vertex> + <position x="-0.236627" y="-0.133254" z="0.543261"/> + <normal x="0.002184" y="-0.947322" z="-0.320274"/> + <texcoord u="0.263156" v="0.273393"/> + </vertex> + <vertex> + <position x="-0.004276" y="-0.171971" z="0.647561"/> + <normal x="0.031383" y="-0.918680" z="-0.393754"/> + <texcoord u="0.309932" v="0.371463"/> + </vertex> + <vertex> + <position x="-0.417406" y="-0.096388" z="0.427211"/> + <normal x="-0.081648" y="-0.973526" z="-0.213497"/> + <texcoord u="0.212394" v="0.196401"/> + </vertex> + <vertex> + <position x="0.228247" y="-0.003998" z="-0.000121"/> + <normal x="0.010464" y="-0.999945" z="0.000000"/> + <texcoord u="0.027928" v="0.467647"/> + </vertex> + <vertex> + <position x="0.033997" y="-0.006863" z="-0.000121"/> + <normal x="0.038017" y="-0.999277" z="0.000000"/> + <texcoord u="0.028574" v="0.386657"/> + </vertex> + <vertex> + <position x="-0.160252" y="-0.009728" z="-0.000121"/> + <normal x="0.088748" y="-0.996054" z="0.000000"/> + <texcoord u="0.029316" v="0.305716"/> + </vertex> + <vertex> + <position x="0.258680" y="0.319295" z="-0.000121"/> + <normal x="0.156659" y="0.987653" z="0.000000"/> + <texcoord u="0.963532" v="0.550815"/> + </vertex> + <vertex> + <position x="0.258480" y="0.312652" z="0.177215"/> + <normal x="0.143584" y="0.978686" z="0.146824"/> + <texcoord u="0.899493" v="0.549229"/> + </vertex> + <vertex> + <position x="-0.791543" y="0.066844" z="-0.061783"/> + <normal x="-0.862227" y="0.242887" z="-0.444489"/> + <texcoord u="0.915236" v="0.125134"/> + </vertex> + <vertex> + <position x="-0.791543" y="0.066844" z="-0.061783"/> + <normal x="-0.862227" y="0.242887" z="-0.444489"/> + <texcoord u="0.892077" v="0.050693"/> + </vertex> + <vertex> + <position x="0.283294" y="-0.254422" z="-0.991509"/> + <normal x="-0.004394" y="0.416505" z="-0.909123"/> + <texcoord u="0.483717" v="0.558810"/> + </vertex> + <vertex> + <position x="0.283294" y="-0.254422" z="-0.991509"/> + <normal x="-0.004394" y="0.416505" z="-0.909123"/> + <texcoord u="0.336625" v="0.947344"/> + </vertex> + <vertex> + <position x="0.849464" y="-0.140468" z="-0.878842"/> + <normal x="0.180045" y="0.432299" z="-0.883573"/> + <texcoord u="0.537993" v="0.792215"/> + </vertex> + <vertex> + <position x="0.849464" y="-0.140468" z="-0.878842"/> + <normal x="0.180045" y="0.432299" z="-0.883573"/> + <texcoord u="0.481860" v="0.950392"/> + </vertex> + <vertex> + <position x="1.231654" y="-0.032411" z="-0.707952"/> + <normal x="0.408566" y="0.458115" z="-0.789433"/> + <texcoord u="0.611671" v="0.951961"/> + </vertex> + <vertex> + <position x="1.231654" y="-0.032411" z="-0.707952"/> + <normal x="0.408566" y="0.458115" z="-0.789433"/> + <texcoord u="0.588611" v="0.956403"/> + </vertex> + <vertex> + <position x="1.231654" y="-0.032411" z="-0.707952"/> + <normal x="0.408566" y="0.458115" z="-0.789433"/> + <texcoord u="0.544984" v="0.179350"/> + </vertex> + <vertex> + <position x="1.325066" y="0.135811" z="-0.513775"/> + <normal x="0.662584" y="0.647362" z="-0.376702"/> + <texcoord u="0.713995" v="0.995251"/> + </vertex> + <vertex> + <position x="1.325066" y="0.135811" z="-0.513775"/> + <normal x="0.662584" y="0.647362" z="-0.376702"/> + <texcoord u="0.627203" v="0.101915"/> + </vertex> + <vertex> + <position x="1.179518" y="0.233637" z="-0.260672"/> + <normal x="0.512599" y="0.856673" z="-0.057909"/> + <texcoord u="0.827485" v="0.942344"/> + </vertex> + <vertex> + <position x="1.179518" y="0.233637" z="-0.260672"/> + <normal x="0.512599" y="0.856673" z="-0.057909"/> + <texcoord u="0.743496" v="0.050336"/> + </vertex> + <vertex> + <position x="-0.602022" y="0.105535" z="-0.164881"/> + <normal x="-0.354774" y="0.934589" z="0.026055"/> + <texcoord u="0.875234" v="0.202728"/> + </vertex> + <vertex> + <position x="-0.602022" y="0.105535" z="-0.164881"/> + <normal x="-0.354774" y="0.934589" z="0.026055"/> + <texcoord u="0.466258" v="0.010438"/> + </vertex> + <vertex> + <position x="-0.602022" y="0.105535" z="-0.164881"/> + <normal x="-0.354774" y="0.934589" z="0.026055"/> + <texcoord u="0.976829" v="0.024487"/> + </vertex> + <vertex> + <position x="-1.311399" y="-0.072724" z="-0.263836"/> + <normal x="-0.708114" y="-0.272696" z="0.651315"/> + <texcoord u="0.475824" v="0.204685"/> + </vertex> + <vertex> + <position x="-1.311362" y="-0.072724" z="-0.393713"/> + <normal x="-0.720778" y="-0.205699" z="-0.661942"/> + <texcoord u="0.503976" v="0.224142"/> + </vertex> + <vertex> + <position x="-1.311362" y="-0.072724" z="-0.393713"/> + <normal x="-0.720778" y="-0.205699" z="-0.661942"/> + <texcoord u="0.445009" v="0.219570"/> + </vertex> + <vertex> + <position x="-0.578689" y="0.105535" z="-0.490728"/> + <normal x="-0.282504" y="0.821994" z="-0.494486"/> + <texcoord u="0.744245" v="0.212145"/> + </vertex> + <vertex> + <position x="-0.578689" y="0.105535" z="-0.490728"/> + <normal x="-0.282504" y="0.821994" z="-0.494486"/> + <texcoord u="0.292600" v="0.089296"/> + </vertex> + <vertex> + <position x="-0.578689" y="0.105535" z="-0.490728"/> + <normal x="-0.282504" y="0.821994" z="-0.494486"/> + <texcoord u="0.552230" v="0.006162"/> + </vertex> + <vertex> + <position x="-0.578689" y="0.105535" z="-0.490728"/> + <normal x="-0.282504" y="0.821994" z="-0.494486"/> + <texcoord u="0.020979" v="0.940013"/> + </vertex> + <vertex> + <position x="-0.431603" y="-0.011715" z="-0.688820"/> + <normal x="-0.335300" y="0.627230" z="-0.702962"/> + <texcoord u="0.651395" v="0.271757"/> + </vertex> + <vertex> + <position x="-0.431603" y="-0.011715" z="-0.688820"/> + <normal x="-0.335300" y="0.627230" z="-0.702962"/> + <texcoord u="0.101206" v="0.938647"/> + </vertex> + <vertex> + <position x="-0.005923" y="-0.253867" z="-0.946083"/> + <normal x="-0.215231" y="0.418904" z="-0.882154"/> + <texcoord u="0.503086" v="0.441213"/> + </vertex> + <vertex> + <position x="-0.005923" y="-0.253867" z="-0.946083"/> + <normal x="-0.215231" y="0.418904" z="-0.882154"/> + <texcoord u="0.259691" v="0.950972"/> + </vertex> + <vertex> + <position x="-0.282346" y="-0.131034" z="-0.810212"/> + <normal x="-0.305724" y="0.498475" z="-0.811206"/> + <texcoord u="0.581318" v="0.330903"/> + </vertex> + <vertex> + <position x="-0.282346" y="-0.131034" z="-0.810212"/> + <normal x="-0.305724" y="0.498475" z="-0.811206"/> + <texcoord u="0.167826" v="0.945690"/> + </vertex> + <vertex> + <position x="0.427466" y="0.271987" z="-0.164775"/> + <normal x="0.152720" y="0.972255" z="-0.177192"/> + <texcoord u="0.887184" v="0.639022"/> + </vertex> + <vertex> + <position x="0.427466" y="0.271987" z="-0.164775"/> + <normal x="0.152720" y="0.972255" z="-0.177192"/> + <texcoord u="0.901091" v="0.612148"/> + </vertex> + <vertex> + <position x="-0.371020" y="0.156069" z="-0.164672"/> + <normal x="-0.318105" y="0.937800" z="-0.139068"/> + <texcoord u="0.897639" v="0.309841"/> + </vertex> + <vertex> + <position x="-0.371020" y="0.156069" z="-0.164672"/> + <normal x="-0.318105" y="0.937800" z="-0.139068"/> + <texcoord u="0.876854" v="0.296815"/> + </vertex> + <vertex> + <position x="-0.071017" y="0.325693" z="-0.202188"/> + <normal x="-0.241639" y="0.944523" z="-0.222458"/> + <texcoord u="0.893990" v="0.432495"/> + </vertex> + <vertex> + <position x="-0.037109" y="0.256817" z="-0.342571"/> + <normal x="-0.204986" y="0.868910" z="-0.450529"/> + <texcoord u="0.825011" v="0.442708"/> + </vertex> + <vertex> + <position x="-0.037109" y="0.256817" z="-0.342571"/> + <normal x="-0.204986" y="0.868910" z="-0.450529"/> + <texcoord u="0.837991" v="0.440663"/> + </vertex> + <vertex> + <position x="-0.190671" y="0.197420" z="-0.298412"/> + <normal x="-0.331047" y="0.866647" z="-0.373272"/> + <texcoord u="0.830014" v="0.374971"/> + </vertex> + <vertex> + <position x="-0.190671" y="0.197420" z="-0.298412"/> + <normal x="-0.331047" y="0.866647" z="-0.373272"/> + <texcoord u="0.849723" v="0.377177"/> + </vertex> + <vertex> + <position x="0.263659" y="0.284910" z="-0.305223"/> + <normal x="0.098334" y="0.929720" z="-0.354895"/> + <texcoord u="0.840669" v="0.564759"/> + </vertex> + <vertex> + <position x="0.263659" y="0.284910" z="-0.305223"/> + <normal x="0.098334" y="0.929720" z="-0.354895"/> + <texcoord u="0.852199" v="0.550263"/> + </vertex> + <vertex> + <position x="0.533752" y="0.176732" z="-0.457879"/> + <normal x="0.056558" y="0.869820" z="-0.490116"/> + <texcoord u="0.759156" v="0.674445"/> + </vertex> + <vertex> + <position x="1.090004" y="0.129608" z="-0.525771"/> + <normal x="0.011018" y="0.865900" z="-0.500095"/> + <texcoord u="0.713735" v="0.899320"/> + </vertex> + <vertex> + <position x="0.285411" y="0.165251" z="-0.517708"/> + <normal x="0.018268" y="0.834686" z="-0.550424"/> + <texcoord u="0.741432" v="0.571509"/> + </vertex> + <vertex> + <position x="-0.248043" y="0.126098" z="-0.437867"/> + <normal x="-0.157557" y="0.878153" z="-0.451690"/> + <texcoord u="0.766062" v="0.350803"/> + </vertex> + <vertex> + <position x="-0.442447" y="0.140193" z="-0.316376"/> + <normal x="-0.079682" y="0.971810" z="-0.221894"/> + <texcoord u="0.814639" v="0.269517"/> + </vertex> + <vertex> + <position x="-0.005184" y="0.140382" z="-0.523719"/> + <normal x="-0.133369" y="0.806994" z="-0.575303"/> + <texcoord u="0.738102" v="0.452849"/> + </vertex> + <vertex> + <position x="-0.454696" y="0.140193" z="-0.164748"/> + <normal x="-0.207265" y="0.978248" z="-0.008543"/> + <texcoord u="0.875993" v="0.263112"/> + </vertex> + <vertex> + <position x="-1.265887" y="0.007741" z="-0.369276"/> + <normal x="-0.522413" y="0.738513" z="-0.426243"/> + <texcoord u="0.512529" v="0.200448"/> + </vertex> + <vertex> + <position x="-1.265887" y="0.007741" z="-0.369276"/> + <normal x="-0.522413" y="0.738513" z="-0.426243"/> + <texcoord u="0.420237" v="0.224142"/> + </vertex> + <vertex> + <position x="-1.265887" y="0.007741" z="-0.369276"/> + <normal x="-0.522413" y="0.738513" z="-0.426243"/> + <texcoord u="0.516385" v="0.188342"/> + </vertex> + <vertex> + <position x="-1.266410" y="0.007741" z="-0.285946"/> + <normal x="-0.535439" y="0.720331" z="0.440940"/> + <texcoord u="0.494430" v="0.188017"/> + </vertex> + <vertex> + <position x="-0.005671" y="-0.336577" z="-0.946864"/> + <normal x="-0.261013" y="-0.846779" z="-0.463505"/> + <texcoord u="0.264416" v="0.971986"/> + </vertex> + <vertex> + <position x="-0.005671" y="-0.336577" z="-0.946864"/> + <normal x="-0.261013" y="-0.846779" z="-0.463505"/> + <texcoord u="0.453084" v="0.370693"/> + </vertex> + <vertex> + <position x="0.283972" y="-0.335710" z="-0.990740"/> + <normal x="0.075320" y="-0.860119" z="-0.504502"/> + <texcoord u="0.334474" v="0.967127"/> + </vertex> + <vertex> + <position x="0.283972" y="-0.335710" z="-0.990740"/> + <normal x="0.075320" y="-0.860119" z="-0.504502"/> + <texcoord u="0.469402" v="0.492076"/> + </vertex> + <vertex> + <position x="-0.281841" y="-0.248174" z="-0.810474"/> + <normal x="-0.475620" y="-0.769463" z="-0.426277"/> + <texcoord u="0.179655" v="0.975658"/> + </vertex> + <vertex> + <position x="-0.281841" y="-0.248174" z="-0.810474"/> + <normal x="-0.475620" y="-0.769463" z="-0.426277"/> + <texcoord u="0.385394" v="0.254748"/> + </vertex> + <vertex> + <position x="-0.482314" y="-0.163471" z="-0.689335"/> + <normal x="-0.682538" y="-0.654681" z="-0.324860"/> + <texcoord u="0.111772" v="0.983561"/> + </vertex> + <vertex> + <position x="-0.482314" y="-0.163471" z="-0.689335"/> + <normal x="-0.682538" y="-0.654681" z="-0.324860"/> + <texcoord u="0.325781" v="0.170191"/> + </vertex> + <vertex> + <position x="-0.573607" y="-0.080589" z="-0.515917"/> + <normal x="-0.405159" y="-0.823338" z="-0.397443"/> + <texcoord u="0.331410" v="0.058559"/> + </vertex> + <vertex> + <position x="-0.573607" y="-0.080589" z="-0.515917"/> + <normal x="-0.405159" y="-0.823338" z="-0.397443"/> + <texcoord u="0.050252" v="0.985830"/> + </vertex> + <vertex> + <position x="-0.573607" y="-0.080589" z="-0.515917"/> + <normal x="-0.405159" y="-0.823338" z="-0.397443"/> + <texcoord u="0.247583" v="0.129540"/> + </vertex> + <vertex> + <position x="0.847803" y="-0.240681" z="-0.877372"/> + <normal x="0.306730" y="-0.831228" z="-0.463656"/> + <texcoord u="0.475325" v="0.974061"/> + </vertex> + <vertex> + <position x="0.847803" y="-0.240681" z="-0.877372"/> + <normal x="0.306730" y="-0.831228" z="-0.463656"/> + <texcoord u="0.410195" v="0.728597"/> + </vertex> + <vertex> + <position x="1.230643" y="-0.157288" z="-0.707104"/> + <normal x="0.570827" y="-0.795337" z="-0.203950"/> + <texcoord u="0.579224" v="0.985830"/> + </vertex> + <vertex> + <position x="1.230643" y="-0.157288" z="-0.707104"/> + <normal x="0.570827" y="-0.795337" z="-0.203950"/> + <texcoord u="0.549889" v="0.230713"/> + </vertex> + <vertex> + <position x="1.230643" y="-0.157288" z="-0.707104"/> + <normal x="0.570827" y="-0.795337" z="-0.203950"/> + <texcoord u="0.331136" v="0.889002"/> + </vertex> + <vertex> + <position x="1.325053" y="-0.060818" z="-0.504788"/> + <normal x="0.683047" y="-0.652150" z="0.328857"/> + <texcoord u="0.638056" v="0.182510"/> + </vertex> + <vertex> + <position x="1.325053" y="-0.060818" z="-0.504788"/> + <normal x="0.683047" y="-0.652150" z="0.328857"/> + <texcoord u="0.237598" v="0.928740"/> + </vertex> + <vertex> + <position x="-0.601916" y="-0.086321" z="-0.165206"/> + <normal x="-0.177452" y="-0.962913" z="0.203248"/> + <texcoord u="0.417857" v="0.025031"/> + </vertex> + <vertex> + <position x="-0.601916" y="-0.086321" z="-0.165206"/> + <normal x="-0.177452" y="-0.962913" z="0.203248"/> + <texcoord u="0.987504" v="0.101398"/> + </vertex> + <vertex> + <position x="-0.601916" y="-0.086321" z="-0.165206"/> + <normal x="-0.177452" y="-0.962913" z="0.203248"/> + <texcoord u="0.100780" v="0.119386"/> + </vertex> + <vertex> + <position x="-0.744622" y="-0.031237" z="-0.061213"/> + <normal x="-0.679846" y="-0.687867" z="-0.254260"/> + <texcoord u="0.913671" v="0.089035"/> + </vertex> + <vertex> + <position x="-0.744622" y="-0.031237" z="-0.061213"/> + <normal x="-0.679846" y="-0.687867" z="-0.254260"/> + <texcoord u="0.050074" v="0.061108"/> + </vertex> + <vertex> + <position x="1.252286" y="0.029453" z="-0.321326"/> + <normal x="0.581297" y="-0.725482" z="0.368470"/> + <texcoord u="0.716668" v="0.139379"/> + </vertex> + <vertex> + <position x="1.252286" y="0.029453" z="-0.321326"/> + <normal x="0.581297" y="-0.725482" z="0.368470"/> + <texcoord u="0.151833" v="0.899561"/> + </vertex> + <vertex> + <position x="0.423115" y="-0.028434" z="-0.200476"/> + <normal x="0.047525" y="-0.981266" z="0.186702"/> + <texcoord u="0.111623" v="0.550171"/> + </vertex> + <vertex> + <position x="-0.352498" y="-0.072312" z="-0.165573"/> + <normal x="0.043431" y="-0.978338" z="0.202405"/> + <texcoord u="0.101947" v="0.224074"/> + </vertex> + <vertex> + <position x="0.259900" y="-0.039404" z="-0.284157"/> + <normal x="0.019138" y="-0.976984" z="0.212453"/> + <texcoord u="0.147206" v="0.481777"/> + </vertex> + <vertex> + <position x="-0.002882" y="-0.050373" z="-0.348743"/> + <normal x="0.038636" y="-0.971991" z="0.231819"/> + <texcoord u="0.174975" v="0.372244"/> + </vertex> + <vertex> + <position x="-0.191413" y="-0.061343" z="-0.276534"/> + <normal x="0.071078" y="-0.973477" z="0.217463"/> + <texcoord u="0.146719" v="0.292920"/> + </vertex> + <vertex> + <position x="1.241464" y="-0.063918" z="-0.514215"/> + <normal x="0.014536" y="-0.916011" z="0.400890"/> + <texcoord u="0.241420" v="0.893734"/> + </vertex> + <vertex> + <position x="0.635459" y="-0.088291" z="-0.538924"/> + <normal x="0.046983" y="-0.931948" z="0.359535"/> + <texcoord u="0.254798" v="0.640132"/> + </vertex> + <vertex> + <position x="0.271936" y="-0.151717" z="-0.637449"/> + <normal x="0.041648" y="-0.923898" z="0.380365"/> + <texcoord u="0.302531" v="0.487618"/> + </vertex> + <vertex> + <position x="-0.236627" y="-0.133254" z="-0.543504"/> + <normal x="0.002184" y="-0.947322" z="0.320274"/> + <texcoord u="0.263156" v="0.273393"/> + </vertex> + <vertex> + <position x="-0.004276" y="-0.171971" z="-0.647804"/> + <normal x="0.031383" y="-0.918680" z="0.393754"/> + <texcoord u="0.309932" v="0.371463"/> + </vertex> + <vertex> + <position x="-0.417406" y="-0.096388" z="-0.427454"/> + <normal x="-0.081648" y="-0.973526" z="0.213497"/> + <texcoord u="0.212394" v="0.196401"/> + </vertex> + <vertex> + <position x="0.258480" y="0.312652" z="-0.177458"/> + <normal x="0.143584" y="0.978686" z="-0.146824"/> + <texcoord u="0.899493" v="0.549229"/> + </vertex> + </vertexbuffer> + </geometry> + </submesh> + </submeshes> +</mesh> Property changes on: trunk/data/ships/Octavius/Apteryx/octavius_apteryx.mesh.xml ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/data/ships/Octavius/Apteryx/octavius_apteryx.wings =================================================================== (Binary files differ) Property changes on: trunk/data/ships/Octavius/Apteryx/octavius_apteryx.wings ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/ships/Octavius/Apteryx/octavius_apteryx.xml =================================================================== --- trunk/data/ships/Octavius/Apteryx/octavius_apteryx.xml (rev 0) +++ trunk/data/ships/Octavius/Apteryx/octavius_apteryx.xml 2006-12-10 00:29:31 UTC (rev 288) @@ -0,0 +1,35 @@ +<?xml version="1.0"?> + +<ship> + <!-- Naming --> + <faction>Ocavius</faction> + <name>Storm</name> + + <!-- Generic Data --> + <class>Patrol Trainer</class> + <techlevel>0</techlevel> + <size>12.2</size> + <mass>8500</mass> + + <!-- Sizes --> + <capacitorsize>1</capacitorsize> + <ecmsize>1</ecmsize> + <engines>1</engines> + <enginesize>3</enginesize> + <guns>2</guns> + <gunsize>1:1</gunsize> + <missiles>2</missiles> + <missilesize>2:2</missilesize> + <modx>2</modx> + <powerplantsize>2</powerplantsize> + <radarsize>1</radarsize> + <shieldsize>1</shieldsize> + <armor>9000</armor> + <cargocapacity>1</cargocapacity> + + <!-- Movement --> + <dragfactor>12.96</dragfactor> <!-- 13.0 ingame --> + <pitch>0.001571</pitch> <!-- 90.0 in jossh --> + <roll>0.001222</roll> <!-- 70.0 in jossh --> + <yaw>0.001396</yaw> <!-- 80.0 in jossh --> +</ship> \ No newline at end of file Property changes on: trunk/data/ships/Octavius/Apteryx/octavius_apteryx.xml ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/data/ships/Octavius/Apteryx/octavius_apteryx_auv.png =================================================================== (Binary files differ) Property changes on: trunk/data/ships/Octavius/Apteryx/octavius_apteryx_auv.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/ships/Octavius/Apteryx/octavius_apteryx_auv.svg =================================================================== --- trunk/data/ships/Octavius/Apteryx/octavius_apteryx_auv.svg (rev 0) +++ trunk/data/ships/Octavius/Apteryx/octavius_apteryx_auv.svg 2006-12-10 00:29:31 UTC (rev 288) @@ -0,0 +1,2207 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.43" + width="2048" + height="2048" + version="1.0" + sodipodi:docbase="/home/egore/source/opengate/data/Octavius/Apteryx" + sodipodi:docname="octavius_apteryx_auv.svg" + inkscape:export-filename="/home/egore/source/opengate/data/Octavius/Apteryx/octavius_apteryx_auv.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs5"> + <linearGradient + id="linearGradient5897"> + <stop + style="stop-color:#ff8c8c;stop-opacity:1;" + offset="0" + id="stop5899" /> + <stop + style="stop-color:#ff1111;stop-opacity:1;" + offset="1" + id="stop5901" /> + </linearGradient> + <linearGradient + id="linearGradient4139"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop4141" /> + <stop + style="stop-color:#2e2e2e;stop-opacity:1;" + offset="1" + id="stop4143" /> + </linearGradient> + <linearGradient + id="linearGradient3218"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop3220" /> + <stop + id="stop3226" + offset="0.66233766" + style="stop-color:#5f5f5f;stop-opacity:1;" /> + <stop + style="stop-color:#5f5f5f;stop-opacity:0;" + offset="1" + id="stop3222" /> + </linearGradient> + <linearGradient + id="linearGradient7044"> + <stop + style="stop-color:#06ff02;stop-opacity:1;" + offset="0" + id="stop7046" /> + <stop + id="stop7052" + offset="0.33000001" + style="stop-color:#002800;stop-opacity:1;" /> + <stop + style="stop-color:#005600;stop-opacity:1;" + offset="0.5" + id="stop7054" /> + <stop + id="stop7056" + offset="0.66000003" + style="stop-color:#002100;stop-opacity:1;" /> + <stop + style="stop-color:#023801;stop-opacity:1;" + offset="0.85000002" + id="stop9683" /> + <stop + style="stop-color:#061505;stop-opacity:1;" + offset="1" + id="stop7048" /> + </linearGradient> + <linearGradient + id="linearGradient4410"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop4412" /> + <stop + id="stop4418" + offset="0" + style="stop-color:#484848;stop-opacity:1;" /> + <stop + style="stop-color:#212121;stop-opacity:1;" + offset="1" + id="stop4414" /> + </linearGradient> + <linearGradient + id="linearGradient6793"> + <stop + style="stop-color:#261003;stop-opacity:1;" + offset="0" + id="stop6795" /> + <stop + id="stop6801" + offset="0.5" + style="stop-color:#421b04;stop-opacity:1;" /> + <stop + style="stop-color:#230e02;stop-opacity:1;" + offset="1" + id="stop6797" /> + </linearGradient> + <linearGradient + id="linearGradient4156"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop4158" /> + <stop + id="stop4164" + offset="0.5" + style="stop-color:#4a4a4a;stop-opacity:1;" /> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="1" + id="stop4160" /> + </linearGradient> + <linearGradient + id="linearGradient2265"> + <stop + id="stop2267" + offset="0" + style="stop-color:#85870a;stop-opacity:1;" /> + <stop + id="stop2269" + offset="1" + style="stop-color:#850a0a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient3180"> + <stop + style="stop-color:#ebee1d;stop-opacity:1;" + offset="0" + id="stop3182" /> + <stop + style="stop-color:#ee2121;stop-opacity:1;" + offset="1" + id="stop3184" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3180" + id="linearGradient3186" + x1="886.37238" + y1="251.26514" + x2="980.30768" + y2="431.82245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2265" + id="linearGradient2263" + x1="886.37238" + y1="251.26514" + x2="980.30768" + y2="431.82245" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3180" + id="linearGradient3172" + x1="1008.2186" + y1="271.1517" + x2="1009.257" + y2="380.05429" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(5.681874,-32.82861)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3180" + id="linearGradient3174" + x1="1023.4564" + y1="221.59314" + x2="1023.1208" + y2="322.15723" + gradientUnits="userSpaceOnUse" + gradientTransform="... [truncated message content] |
From: <ult...@us...> - 2006-12-10 00:24:21
|
Revision: 287 http://svn.sourceforge.net/opengate/?rev=287&view=rev Author: ultrasick Date: 2006-12-09 16:24:19 -0800 (Sat, 09 Dec 2006) Log Message: ----------- just renaming some stuff Added Paths: ----------- trunk/data/weapons/ trunk/data/weapons/Liar/ trunk/data/weapons/Liar/liar.jpg trunk/data/weapons/Liar/liar.svg trunk/data/weapons/Liar/liar.wings trunk/data/weapons/S-W-28/ trunk/data/weapons/S-W-28/s_w_28.jpg trunk/data/weapons/S-W-28/s_w_28.svg trunk/data/weapons/S-W-28/s_w_28.wings trunk/data/weapons/S-W-28/s_w_28.xml trunk/data/weapons/S-W-28/s_w_28_auv.png trunk/data/weapons/S-W-28/s_w_28_auv_org.png Added: trunk/data/weapons/Liar/liar.jpg =================================================================== (Binary files differ) Property changes on: trunk/data/weapons/Liar/liar.jpg ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/weapons/Liar/liar.svg =================================================================== --- trunk/data/weapons/Liar/liar.svg (rev 0) +++ trunk/data/weapons/Liar/liar.svg 2006-12-10 00:24:19 UTC (rev 287) @@ -0,0 +1,488 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.43+devel" + width="2048" + height="2048" + version="1.0" + sodipodi:docbase="C:\opengate\data\Weapons\Liar" + sodipodi:docname="liar.svg" + inkscape:export-filename="C:\opengate\data\Weapons\Liar\liar_auv.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Liar</dc:title> + <dc:date>2006-04-02</dc:date> + <dc:creator> + <cc:Agent> + <dc:title>Christoph Brill</dc:title> + </cc:Agent> + </dc:creator> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-nc-sa/2.0/" /> + <dc:description>This is the texture of the Weapon "Liar" in the open source game Opengate.</dc:description> + <dc:source>http://opengate.sourceforge.net/</dc:source> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.0/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Attribution" /> + <cc:prohibits + rdf:resource="http://web.resource.org/cc/CommercialUse" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs5"> + <linearGradient + id="linearGradientLiarEnd"> + <stop + style="stop-color:#b75757;stop-opacity:1;" + offset="0" + id="stop12797" /> + <stop + style="stop-color:#951515;stop-opacity:1;" + offset="1" + id="stop12799" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7489"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7491" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7493" /> + </linearGradient> + <linearGradient + id="linearGradient4840"> + <stop + style="stop-color:#fd86f0;stop-opacity:1;" + offset="0" + id="stop4842" /> + <stop + style="stop-color:#c00443;stop-opacity:1;" + offset="1" + id="stop4844" /> + </linearGradient> + <linearGradient + id="linearGradient2209"> + <stop + style="stop-color:#231f1f;stop-opacity:1;" + offset="0" + id="stop2211" /> + <stop + style="stop-color:#746251;stop-opacity:1;" + offset="1" + id="stop2213" /> + </linearGradient> + <linearGradient + id="linearGradient7575"> + <stop + style="stop-color:#4d4d4d;stop-opacity:1;" + offset="0" + id="stop7577" /> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="1" + id="stop7579" /> + </linearGradient> + <linearGradient + id="linearGradient3146"> + <stop + id="stop3148" + offset="0" + style="stop-color:#81878d;stop-opacity:1;" /> + <stop + id="stop3150" + offset="1" + style="stop-color:#cbced0;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2253"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop2255" /> + <stop + style="stop-color:#3b3b3b;stop-opacity:1;" + offset="1" + id="stop2257" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2253" + id="radialGradient2259" + cx="1231.7301" + cy="1125.2493" + fx="1231.7301" + fy="1125.2493" + r="188.2827" + gradientTransform="matrix(1,0,0,1.000161,0,-0.180726)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient4035" + cx="1672.5" + cy="827" + fx="1672.5" + fy="827" + r="237" + gradientTransform="matrix(0.331567,0.310255,-1.0995,1.175024,2027.241,-663.6484)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient4920" + cx="257.70627" + cy="1190.5771" + fx="257.70627" + fy="1190.5771" + r="220.75" + gradientTransform="matrix(2.340883,-3.002739e-8,1.018418e-7,7.939416,-357.0103,-7673.361)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient5810" + cx="837.5" + cy="479.625" + fx="837.5" + fy="479.625" + r="372.5" + gradientTransform="matrix(1,0,0,1.198993,0,-95.44215)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient6698" + cx="839.86609" + cy="486.53146" + fx="839.86609" + fy="486.53146" + r="196.54533" + gradientTransform="matrix(1,0,0,1.250039,0,-121.6517)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7575" + id="radialGradient7581" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,1.250039,0,-121.6517)" + cx="839.86609" + cy="486.53146" + fx="839.86609" + fy="486.53146" + r="196.54533" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2209" + id="linearGradient2215" + x1="231.07806" + y1="1204.3525" + x2="231.07806" + y2="820.28058" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4840" + id="radialGradient4846" + cx="746" + cy="362" + fx="746" + fy="362" + r="54.5" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4840" + id="radialGradient5723" + gradientUnits="userSpaceOnUse" + cx="746" + cy="362" + fx="746" + fy="362" + r="54.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="linearGradient6614" + x1="850.5" + y1="490" + x2="975.5" + y2="490" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7489" + id="linearGradient7495" + x1="0" + y1="1024" + x2="2048" + y2="1024" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient8385" + cx="768.27148" + cy="1488.5018" + fx="768.27148" + fy="1488.5018" + r="268.13989" + gradientTransform="matrix(1,0,0,2.054173,0,-1569.139)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient11023" + cx="1636.6429" + cy="332.55893" + fx="1636.6429" + fy="332.55893" + r="398.82205" + gradientTransform="matrix(1,0,0,0.555756,0,147.7374)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7575" + id="radialGradient11904" + cx="1636.6986" + cy="332.29639" + fx="1636.6986" + fy="332.29639" + r="336.72925" + gradientTransform="matrix(1,2.363489e-16,-2.924031e-16,0.668939,-1.347081e-12,110.0104)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="linearGradient11908" + gradientUnits="userSpaceOnUse" + x1="850.5" + y1="490" + x2="975.5" + y2="490" + gradientTransform="translate(857.0134,-117.3797)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="linearGradient11912" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(697.2073,-117.3797)" + x1="850.5" + y1="490" + x2="975.5" + y2="490" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="linearGradient11916" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(637.8103,-248.9016)" + x1="850.5" + y1="490" + x2="975.5" + y2="490" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4840" + id="radialGradient11920" + gradientUnits="userSpaceOnUse" + cx="746" + cy="362" + fx="746" + fy="362" + r="54.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradientLiarEnd" + id="radialGradient14553" + cx="1600.5363" + cy="1604.158" + fx="1600.5363" + fy="1604.158" + r="433.95651" + gradientTransform="matrix(1,0,0,1.000305,0,-0.489983)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + inkscape:window-height="977" + inkscape:window-width="1280" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + inkscape:document-units="px" + inkscape:zoom="0.39550781" + inkscape:cx="1024" + inkscape:cy="1024" + inkscape:window-x="-4" + inkscape:window-y="-4" + inkscape:current-layer="svg2" /> + <image + id="image1375" + height="2048" + width="2048" + sodipodi:absref="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Weapons\Liar\liar_auv_org.png" + xlink:href="liar_auv_org.png" + x="0" + y="0" + style="fill-opacity:1.0;fill:url(#linearGradient7495)" /> + <path + style="fill:url(#radialGradient2259);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1043.9474,990.02088 L 1178.9842,1125.0096 L 1044.0256,1259.9878 L 1097.0186,1313.0251 L 1232.003,1177.9906 L 1367.0125,1313.0622 L 1419.4822,1260.4681 L 1284.4602,1125.4935 L 1419.5128,990.48074 L 1366.5064,937.43632 L 1231.537,1072.5072 L 1096.5258,937.4525 L 1043.9474,990.02088 z " + id="path1378" + sodipodi:nodetypes="ccccccccccccc" /> + <path + style="fill:url(#radialGradient14553);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1528.6765,1170.5689 L 1167.0797,1531.9888 L 1362.9483,1603.7602 L 1167.0797,1676.4154 L 1528.0577,2037.3934 L 1600.713,1840.4642 L 1673.0146,2037.747 L 2033.8159,1676.2386 L 1837.9473,1603.4066 L 2033.9927,1531.9888 L 1673.0146,1170.6573 L 1600.713,1366.1723 L 1528.6765,1170.5689 z " + id="path2261" /> + <path + style="fill:url(#radialGradient4035);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1624,599.00001 L 1866,618.00001 L 1909,888 L 1766,1055 L 1494,1055 L 1436,819.00001 L 1624,599.00001 z " + id="path3152" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:url(#radialGradient4920);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 26,2019.25 L 466.5,2019.25 L 360.5,27.000006 L 135.25,27.250006 L 26,2019.25 z " + id="path4037" /> + <path + id="path4922" + style="fill:url(#radialGradient5810);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 465.75,33.500006 L 465.5,925.75 L 1209.5,925.25 L 1209.25,33.500006 L 465.75,33.500006 z M 598,166.00001 L 598,792.75 L 1076.75,792.5 L 1076.5,166.25001 L 598,166.00001 z " /> + <path + id="path5812" + style="fill:url(#radialGradient6698);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 680.94383,277.75818 L 643.82072,277.75818 L 644.17428,695.30473 L 680.94383,695.65829 L 680.94383,731.72073 L 999.49543,731.36718 L 999.49543,695.30473 L 1035.9114,695.65829 L 1035.9114,277.75818 L 999.49543,277.40463 L 999.49543,241.34218 L 680.59027,241.34218 L 680.94383,277.75818 z M 680.94383,277.75818 L 999.49543,277.40463 L 999.84899,695.65829 L 680.23672,695.30473 L 680.94383,277.75818 z " /> + <path + d="M 680.94383,277.75818 L 680.94383,695.65829 L 999.49543,695.30473 L 999.49543,277.40463 L 680.94383,277.75818 z " + style="fill:url(#radialGradient7581);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path6700" + sodipodi:nodetypes="ccccc" /> + <rect + style="opacity:1;fill:url(#linearGradient2215);fill-opacity:1;stroke:#202020;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1334" + width="369" + height="318.5" + x="65" + y="855" /> + <path + id="path3090" + d="M 26,2019.25 L 466.5,2019.25 L 360.5,27.000006 L 135.25,27.250006 L 26,2019.25 z " + style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:#202020;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient4846);fill-opacity:1.0;stroke:#fc007a;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196081" + id="path3965" + sodipodi:cx="752" + sodipodi:cy="376" + sodipodi:rx="53" + sodipodi:ry="53" + d="M 805 376 A 53 53 0 1 1 699,376 A 53 53 0 1 1 805 376 z" + transform="translate(13,9)" /> + <path + transform="translate(13,212)" + d="M 805 376 A 53 53 0 1 1 699,376 A 53 53 0 1 1 805 376 z" + sodipodi:ry="53" + sodipodi:rx="53" + sodipodi:cy="376" + sodipodi:cx="752" + id="path5721" + style="opacity:1;fill:url(#radialGradient5723);fill-opacity:1;stroke:#fc007a;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" + sodipodi:type="arc" /> + <rect + style="opacity:1;fill:url(#linearGradient6614);fill-opacity:1.0;stroke:#003257;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196081" + id="rect5725" + width="120" + height="306" + x="853" + y="337" /> + <path + id="path7497" + style="fill:url(#radialGradient8385);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 500.6316,938.19591 L 1035.2043,1198.7648 L 1035.9114,1777.8852 L 500.6316,2038.8076 L 500.6316,938.19591 z M 572.04939,1053.4543 L 963.43299,1244.0196 L 964.1401,1732.6304 L 572.40294,1922.8421 L 572.04939,1053.4543 z " /> + <path + id="path10137" + style="fill:url(#radialGradient11023);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1300.4693,180.62197 L 1448.0779,483.97079 L 1825.3193,483.97079 L 1972.9278,181.15231 L 1300.4693,180.62197 z M 1300.3694,111.4113 L 1300.502,180.75196 L 1238.3208,210.93658 L 1386.9016,514.81572 L 1447.9779,484.49852 L 1447.6244,553.44143 L 1825.4845,553.70659 L 1825.6613,484.5869 L 1886.7377,515.08088 L 2034.9649,212.08563 L 1973.3583,181.14971 L 1973.6234,112.29518 L 1300.3694,111.4113 z " /> + <path + style="fill:url(#radialGradient11904);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1300.4693,180.62197 L 1448.0779,483.97079 L 1825.3193,483.97079 L 1972.9278,181.15231 L 1300.4693,180.62197 z " + id="path10133" + sodipodi:nodetypes="ccccc" /> + <rect + y="353.97055" + x="1680.3149" + height="105.18163" + width="138.38477" + id="rect11906" + style="opacity:1;fill:url(#linearGradient11908);fill-opacity:1;stroke:#003257;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" /> + <rect + style="opacity:1;fill:url(#linearGradient11912);fill-opacity:1;stroke:#003257;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" + id="rect11910" + width="206.26726" + height="105.18163" + x="1452.6266" + y="353.97055" /> + <rect + y="222.44868" + x="1393.2296" + height="105.18163" + width="351.93124" + id="rect11914" + style="opacity:1;fill:url(#linearGradient11916);fill-opacity:1;stroke:#003257;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" /> + <path + transform="translate(1075.074,-101.3087)" + d="M 805 376 A 53 53 0 1 1 699,376 A 53 53 0 1 1 805 376 z" + sodipodi:ry="53" + sodipodi:rx="53" + sodipodi:cy="376" + sodipodi:cx="752" + id="path11918" + style="opacity:1;fill:url(#radialGradient11920);fill-opacity:1;stroke:#fc007a;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" + sodipodi:type="arc" /> + <path + style="fill:#1d2964;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.25098039" + d="M 104,25.999998 L 394,25.999998 L 394,63.999998 L 104,63.999998 L 104,25.999998 z " + id="rect1372" /> + <path + id="path2248" + d="M 14.067653,1980.0677 L 483.93235,1980.0677 L 483.93235,2017.9323 L 14.067653,2017.9323 L 14.067653,1980.0677 z " + style="fill:#1d2964;fill-opacity:1;stroke:#000000;stroke-width:0.63530582;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.25098039" + inkscape:r_cx="true" + inkscape:r_cy="true" /> +</svg> Property changes on: trunk/data/weapons/Liar/liar.svg ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/data/weapons/Liar/liar.wings =================================================================== (Binary files differ) Property changes on: trunk/data/weapons/Liar/liar.wings ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/weapons/S-W-28/s_w_28.jpg =================================================================== (Binary files differ) Property changes on: trunk/data/weapons/S-W-28/s_w_28.jpg ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/weapons/S-W-28/s_w_28.svg =================================================================== --- trunk/data/weapons/S-W-28/s_w_28.svg (rev 0) +++ trunk/data/weapons/S-W-28/s_w_28.svg 2006-12-10 00:24:19 UTC (rev 287) @@ -0,0 +1,488 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.43+devel" + width="2048" + height="2048" + version="1.0" + sodipodi:docbase="C:\opengate\data\Weapons\S-W-28" + sodipodi:docname="s_w_28.svg" + inkscape:export-filename="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Weapons\S-W-28\s_w_28.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title>Liar</dc:title> + <dc:date>2006-04-02</dc:date> + <dc:creator> + <cc:Agent> + <dc:title>Christoph Brill</dc:title> + </cc:Agent> + </dc:creator> + <cc:license + rdf:resource="http://creativecommons.org/licenses/by-nc-sa/2.0/" /> + <dc:description>This is the texture of the Weapon "Liar" in the open source game Opengate.</dc:description> + <dc:source>http://opengate.sourceforge.net/</dc:source> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.0/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Attribution" /> + <cc:prohibits + rdf:resource="http://web.resource.org/cc/CommercialUse" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + </cc:License> + </rdf:RDF> + </metadata> + <defs + id="defs5"> + <linearGradient + id="linearGradientLiarEnd"> + <stop + style="stop-color:#b75757;stop-opacity:1;" + offset="0" + id="stop12797" /> + <stop + style="stop-color:#951515;stop-opacity:1;" + offset="1" + id="stop12799" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7489"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7491" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7493" /> + </linearGradient> + <linearGradient + id="linearGradient4840"> + <stop + style="stop-color:#fd86f0;stop-opacity:1;" + offset="0" + id="stop4842" /> + <stop + style="stop-color:#c00443;stop-opacity:1;" + offset="1" + id="stop4844" /> + </linearGradient> + <linearGradient + id="linearGradient2209"> + <stop + style="stop-color:#231f1f;stop-opacity:1;" + offset="0" + id="stop2211" /> + <stop + style="stop-color:#746251;stop-opacity:1;" + offset="1" + id="stop2213" /> + </linearGradient> + <linearGradient + id="linearGradient7575"> + <stop + style="stop-color:#4d4d4d;stop-opacity:1;" + offset="0" + id="stop7577" /> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="1" + id="stop7579" /> + </linearGradient> + <linearGradient + id="linearGradient3146"> + <stop + id="stop3148" + offset="0" + style="stop-color:#3887d6;stop-opacity:1;" /> + <stop + id="stop3150" + offset="1" + style="stop-color:#9fd7fc;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient2253"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop2255" /> + <stop + style="stop-color:#3b3b3b;stop-opacity:1;" + offset="1" + id="stop2257" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2253" + id="radialGradient2259" + cx="1231.7301" + cy="1125.2493" + fx="1231.7301" + fy="1125.2493" + r="188.2827" + gradientTransform="matrix(1,0,0,1.000161,0,-0.180726)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient4035" + cx="1672.5" + cy="827" + fx="1672.5" + fy="827" + r="237" + gradientTransform="matrix(0.331567,0.310255,-1.0995,1.175024,2027.241,-663.6484)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient4920" + cx="257.70627" + cy="1190.5771" + fx="257.70627" + fy="1190.5771" + r="220.75" + gradientTransform="matrix(2.340883,-3.002739e-8,1.018418e-7,7.939416,-357.0103,-7673.361)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient5810" + cx="837.5" + cy="479.625" + fx="837.5" + fy="479.625" + r="372.5" + gradientTransform="matrix(1,0,0,1.198993,0,-95.44215)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient6698" + cx="839.86609" + cy="486.53146" + fx="839.86609" + fy="486.53146" + r="196.54533" + gradientTransform="matrix(1,0,0,1.250039,0,-121.6517)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7575" + id="radialGradient7581" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,1.250039,0,-121.6517)" + cx="839.86609" + cy="486.53146" + fx="839.86609" + fy="486.53146" + r="196.54533" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2209" + id="linearGradient2215" + x1="231.07806" + y1="1204.3525" + x2="231.07806" + y2="820.28058" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4840" + id="radialGradient4846" + cx="746" + cy="362" + fx="746" + fy="362" + r="54.5" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4840" + id="radialGradient5723" + gradientUnits="userSpaceOnUse" + cx="746" + cy="362" + fx="746" + fy="362" + r="54.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="linearGradient6614" + x1="850.5" + y1="490" + x2="975.5" + y2="490" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient7489" + id="linearGradient7495" + x1="0" + y1="1024" + x2="2048" + y2="1024" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient8385" + cx="768.27148" + cy="1488.5018" + fx="768.27148" + fy="1488.5018" + r="268.13989" + gradientTransform="matrix(1,0,0,2.054173,0,-1569.139)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="radialGradient11023" + cx="1636.6429" + cy="332.55893" + fx="1636.6429" + fy="332.55893" + r="398.82205" + gradientTransform="matrix(1,0,0,0.555756,0,147.7374)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient7575" + id="radialGradient11904" + cx="1636.6986" + cy="332.29639" + fx="1636.6986" + fy="332.29639" + r="336.72925" + gradientTransform="matrix(1,2.363489e-16,-2.924031e-16,0.668939,-1.347081e-12,110.0104)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="linearGradient11908" + gradientUnits="userSpaceOnUse" + x1="850.5" + y1="490" + x2="975.5" + y2="490" + gradientTransform="translate(857.0134,-117.3797)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="linearGradient11912" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(697.2073,-117.3797)" + x1="850.5" + y1="490" + x2="975.5" + y2="490" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3146" + id="linearGradient11916" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(637.8103,-248.9016)" + x1="850.5" + y1="490" + x2="975.5" + y2="490" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4840" + id="radialGradient11920" + gradientUnits="userSpaceOnUse" + cx="746" + cy="362" + fx="746" + fy="362" + r="54.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradientLiarEnd" + id="radialGradient14553" + cx="1600.5363" + cy="1604.158" + fx="1600.5363" + fy="1604.158" + r="433.95651" + gradientTransform="matrix(1,0,0,1.000305,0,-0.489983)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + inkscape:window-height="977" + inkscape:window-width="1280" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + inkscape:document-units="px" + inkscape:zoom="0.1767767" + inkscape:cx="493.19071" + inkscape:cy="1303.8834" + inkscape:window-x="-4" + inkscape:window-y="-4" + inkscape:current-layer="svg2" /> + <image + id="image1375" + height="2048" + width="2048" + sodipodi:absref="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Weapons\Liar\liar_auv_org.png" + xlink:href="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Weapons\Liar\liar_auv_org.png" + x="0" + y="0" + style="fill-opacity:1.0;fill:url(#linearGradient7495)" /> + <path + style="fill:url(#radialGradient2259);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1043.9474,990.02088 L 1178.9842,1125.0096 L 1044.0256,1259.9878 L 1097.0186,1313.0251 L 1232.003,1177.9906 L 1367.0125,1313.0622 L 1419.4822,1260.4681 L 1284.4602,1125.4935 L 1419.5128,990.48074 L 1366.5064,937.43632 L 1231.537,1072.5072 L 1096.5258,937.4525 L 1043.9474,990.02088 z " + id="path1378" + sodipodi:nodetypes="ccccccccccccc" /> + <path + style="fill:url(#radialGradient14553);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1528.6765,1170.5689 L 1167.0797,1531.9888 L 1362.9483,1603.7602 L 1167.0797,1676.4154 L 1528.0577,2037.3934 L 1600.713,1840.4642 L 1673.0146,2037.747 L 2033.8159,1676.2386 L 1837.9473,1603.4066 L 2033.9927,1531.9888 L 1673.0146,1170.6573 L 1600.713,1366.1723 L 1528.6765,1170.5689 z " + id="path2261" /> + <path + style="fill:url(#radialGradient4035);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1624,599.00001 L 1866,618.00001 L 1909,888 L 1766,1055 L 1494,1055 L 1436,819.00001 L 1624,599.00001 z " + id="path3152" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:url(#radialGradient4920);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 26,2019.25 L 466.5,2019.25 L 360.5,27.000006 L 135.25,27.250006 L 26,2019.25 z " + id="path4037" /> + <path + id="path4922" + style="fill:url(#radialGradient5810);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 465.75,33.500006 L 465.5,925.75 L 1209.5,925.25 L 1209.25,33.500006 L 465.75,33.500006 z M 598,166.00001 L 598,792.75 L 1076.75,792.5 L 1076.5,166.25001 L 598,166.00001 z " /> + <path + id="path5812" + style="fill:url(#radialGradient6698);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 680.94383,277.75818 L 643.82072,277.75818 L 644.17428,695.30473 L 680.94383,695.65829 L 680.94383,731.72073 L 999.49543,731.36718 L 999.49543,695.30473 L 1035.9114,695.65829 L 1035.9114,277.75818 L 999.49543,277.40463 L 999.49543,241.34218 L 680.59027,241.34218 L 680.94383,277.75818 z M 680.94383,277.75818 L 999.49543,277.40463 L 999.84899,695.65829 L 680.23672,695.30473 L 680.94383,277.75818 z " /> + <path + d="M 680.94383,277.75818 L 680.94383,695.65829 L 999.49543,695.30473 L 999.49543,277.40463 L 680.94383,277.75818 z " + style="fill:url(#radialGradient7581);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path6700" + sodipodi:nodetypes="ccccc" /> + <rect + style="opacity:1;fill:url(#linearGradient2215);fill-opacity:1;stroke:#202020;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1334" + width="369" + height="318.5" + x="65" + y="855" /> + <path + id="path3090" + d="M 26,2019.25 L 466.5,2019.25 L 360.5,27.000006 L 135.25,27.250006 L 26,2019.25 z " + style="fill:none;fill-opacity:1.0;fill-rule:evenodd;stroke:#202020;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient4846);fill-opacity:1.0;stroke:#fc007a;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196081" + id="path3965" + sodipodi:cx="752" + sodipodi:cy="376" + sodipodi:rx="53" + sodipodi:ry="53" + d="M 805 376 A 53 53 0 1 1 699,376 A 53 53 0 1 1 805 376 z" + transform="translate(13,9)" /> + <path + transform="translate(13,212)" + d="M 805 376 A 53 53 0 1 1 699,376 A 53 53 0 1 1 805 376 z" + sodipodi:ry="53" + sodipodi:rx="53" + sodipodi:cy="376" + sodipodi:cx="752" + id="path5721" + style="opacity:1;fill:url(#radialGradient5723);fill-opacity:1;stroke:#fc007a;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" + sodipodi:type="arc" /> + <rect + style="opacity:1;fill:url(#linearGradient6614);fill-opacity:1.0;stroke:#003257;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196081" + id="rect5725" + width="120" + height="306" + x="853" + y="337" /> + <path + id="path7497" + style="fill:url(#radialGradient8385);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 500.6316,938.19591 L 1035.2043,1198.7648 L 1035.9114,1777.8852 L 500.6316,2038.8076 L 500.6316,938.19591 z M 572.04939,1053.4543 L 963.43299,1244.0196 L 964.1401,1732.6304 L 572.40294,1922.8421 L 572.04939,1053.4543 z " /> + <path + id="path10137" + style="fill:url(#radialGradient11023);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1300.4693,180.62197 L 1448.0779,483.97079 L 1825.3193,483.97079 L 1972.9278,181.15231 L 1300.4693,180.62197 z M 1300.3694,111.4113 L 1300.502,180.75196 L 1238.3208,210.93658 L 1386.9016,514.81572 L 1447.9779,484.49852 L 1447.6244,553.44143 L 1825.4845,553.70659 L 1825.6613,484.5869 L 1886.7377,515.08088 L 2034.9649,212.08563 L 1973.3583,181.14971 L 1973.6234,112.29518 L 1300.3694,111.4113 z " /> + <path + style="fill:url(#radialGradient11904);fill-opacity:1.0;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 1300.4693,180.62197 L 1448.0779,483.97079 L 1825.3193,483.97079 L 1972.9278,181.15231 L 1300.4693,180.62197 z " + id="path10133" + sodipodi:nodetypes="ccccc" /> + <rect + y="353.97055" + x="1680.3149" + height="105.18163" + width="138.38477" + id="rect11906" + style="opacity:1;fill:url(#linearGradient11908);fill-opacity:1;stroke:#003257;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" /> + <rect + style="opacity:1;fill:url(#linearGradient11912);fill-opacity:1;stroke:#003257;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" + id="rect11910" + width="206.26726" + height="105.18163" + x="1452.6266" + y="353.97055" /> + <rect + y="222.44868" + x="1393.2296" + height="105.18163" + width="351.93124" + id="rect11914" + style="opacity:1;fill:url(#linearGradient11916);fill-opacity:1;stroke:#003257;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" /> + <path + transform="translate(1075.074,-101.3087)" + d="M 805 376 A 53 53 0 1 1 699,376 A 53 53 0 1 1 805 376 z" + sodipodi:ry="53" + sodipodi:rx="53" + sodipodi:cy="376" + sodipodi:cx="752" + id="path11918" + style="opacity:1;fill:url(#radialGradient11920);fill-opacity:1;stroke:#fc007a;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.50196078" + sodipodi:type="arc" /> + <path + style="fill:#1d2964;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.25098039" + d="M 104,25.999998 L 394,25.999998 L 394,63.999998 L 104,63.999998 L 104,25.999998 z " + id="rect1372" /> + <path + id="path2248" + d="M 14.067653,1980.0677 L 483.93235,1980.0677 L 483.93235,2017.9323 L 14.067653,2017.9323 L 14.067653,1980.0677 z " + style="fill:#1d2964;fill-opacity:1;stroke:#000000;stroke-width:0.63530582;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.25098039" + inkscape:r_cx="true" + inkscape:r_cy="true" /> +</svg> Property changes on: trunk/data/weapons/S-W-28/s_w_28.svg ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/data/weapons/S-W-28/s_w_28.wings =================================================================== (Binary files differ) Property changes on: trunk/data/weapons/S-W-28/s_w_28.wings ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/weapons/S-W-28/s_w_28.xml =================================================================== --- trunk/data/weapons/S-W-28/s_w_28.xml (rev 0) +++ trunk/data/weapons/S-W-28/s_w_28.xml 2006-12-10 00:24:19 UTC (rev 287) @@ -0,0 +1,26 @@ +<?xml version="1.0"?> + +<weapon> + <!-- Naming --> + <manufacturer>T&P Systems</manufacturer> + <name>S-W-28</name> + <description>The S-W-28 is Solrain's stock equipment laser, and is basically a modified Liar. All Solrain pilots are given this as part of their starter package. TRI subsidizes production of this model, and therefore it cannot be legally traded or sold for much value.</description> + + <!-- Generic Data --> + <class>Stock Laser</class> + <techlevel>0</techlevel> + <size>1</size> <!-- ucs --> + <mass>100</mass> <!-- kg --> + + <!-- Sizes --> + <velocity>10000</velocity> <!-- m/s --> + <delay>0.75</delay> <!-- s --> + <damage>235000</damage> <!-- u --> + <engergyuse>399000</energyuse> <!-- nJ/f --> + <ammo>0</ammo> + + <!-- reqired components --> + <component>Nitrogen</component> + <component>Laser Components</component> + <component>Optics</component> +</weapon> \ No newline at end of file Property changes on: trunk/data/weapons/S-W-28/s_w_28.xml ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/data/weapons/S-W-28/s_w_28_auv.png =================================================================== (Binary files differ) Property changes on: trunk/data/weapons/S-W-28/s_w_28_auv.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/weapons/S-W-28/s_w_28_auv_org.png =================================================================== (Binary files differ) Property changes on: trunk/data/weapons/S-W-28/s_w_28_auv_org.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ult...@us...> - 2006-12-10 00:15:59
|
Revision: 286 http://svn.sourceforge.net/opengate/?rev=286&view=rev Author: ultrasick Date: 2006-12-09 16:16:00 -0800 (Sat, 09 Dec 2006) Log Message: ----------- moved rankings xml file in the right directory Added Paths: ----------- trunk/data/rankings/octavius_rankings.xml Added: trunk/data/rankings/octavius_rankings.xml =================================================================== --- trunk/data/rankings/octavius_rankings.xml (rev 0) +++ trunk/data/rankings/octavius_rankings.xml 2006-12-10 00:16:00 UTC (rev 286) @@ -0,0 +1,269 @@ +<?xml version="1.0"?> + +<rank-matrix fatction="octavius"> + <rank> + <level>0</level> + <name>Recruit</name> + <experience>0</experience> + </rank> + <rank type="Enlisted"> + <level>1</level> + <name>Private</name> + <experience>2000</experience> + </rank> + <rank type="Enlisted"> + <level>2</level> + <name>Specialist</name> + <experience>4000</experience> + </rank> + <rank type="Enlisted"> + <level>3</level> + <name>Corporal</name> + <experience>8800</experience> + </rank> + <rank type="Enlisted"> + <level>4</level> + <name>Sergant</name> + <experience>15700</experience> + </rank> + <rank type="Enlisted"> + <level>5</level> + <name>Staff Sergant</name> + <experience>25000</experience> + </rank> + <rank type="Enlisted"> + <level>6</level> + <name>Master Sergant</name> + <experience>37000</experience> + </rank> + <rank type="Enlisted"> + <level>7</level> + <name>First Sergang</name> + <experience>51600</experience> + </rank> + <rank type="Enlisted"> + <level>8</level> + <name>Sergant Major</name> + <experience>69000</experience> + </rank> + <rank type="Enlisted"> + <level>9</level> + <name>Senior Sergant</name> + <experience>89300</experience> + </rank> + + <rank type="Officers"> + <level>10</level> + <name>Lancer</name> + <experience>112600</experience> + </rank> + <rank type="Officers"> + <level>11</level> + <name>First Lancer</name> + <experience>140000</experience> + </rank> + <rank type="Officers"> + <level>12</level> + <name>Master Lancer</name> + <experience>169000</experience> + </rank> + <rank type="Officers"> + <level>13</level> + <name>Senior Lancer</name> + <experience>202000</experience> + </rank> + <rank type="Officers"> + <level>14</level> + <name>Marksman</name> + <experience>240000</experience> + </rank> + <rank type="Officers"> + <level>14</level> + <name>Marksman</name> + <experience>240000</experience> + </rank> + <rank type="Officers"> + <level>15</level> + <name>First Marksman</name> + <experience>280000</experience> + </rank> + <rank type="Officers"> + <level>16</level> + <name>Master Marksman</name> + <experience>325000</experience> + </rank> + <rank type="Officers"> + <level>17</level> + <name>Senior Marksman</name> + <experience>372000</experience> + </rank> + <rank type="Officers"> + <level>18</level> + <name>Gunner</name> + <experience>424000</experience> + </rank> + <rank type="Officers"> + <level>19</level> + <name>Master Gunner</name> + <experience>480000</experience> + </rank> + + <rank type="Commanders"> + <level>20</level> + <name>Commander</name> + <experience>540000</experience> + </rank> + <rank type="Commanders"> + <level>21</level> + <name>First Commander</name> + <experience>605000</experience> + </rank> + <rank type="Commanders"> + <level>22</level> + <name>Master Commander</name> + <experience>675000</experience> + </rank> + <rank type="Commanders"> + <level>23</level> + <name>Senior Commander</name> + <experience>750000</experience> + </rank> + <rank type="Commanders"> + <level>24</level> + <name>Brigadier</name> + <experience>828000</experience> + </rank> + <rank type="Commanders"> + <level>25</level> + <name>First Brigadier</name> + <experience>911000</experience> + </rank> + <rank type="Commanders"> + <level>26</level> + <name>Master Brigadier</name> + <experience>1000000</experience> + </rank> + <rank type="Commanders"> + <level>27</level> + <name>Senior Brigadier</name> + <experience>1100000</experience> + </rank> + <rank type="Commanders"> + <level>28</level> + <name>Brigadier General</name> + <experience>1200000</experience> + </rank> + <rank type="Commanders"> + <level>29</level> + <name>General</name> + <experience>1300000</experience> + </rank> + + <rank type="Council Members"> + <level>30</level> + <name>Mentor</name> + <experience>1407000</experience> + </rank> + <rank type="Council Members"> + <level>31</level> + <name>First Mentor</name> + <experience>1520000</experience> + </rank> + <rank type="Council Members"> + <level>32</level> + <name>Senior Mentor</name> + <experience>1640000</experience> + </rank> + <rank type="Council Members"> + <level>33</level> + <name>Preceptor</name> + <experience>1770000</experience> + </rank> + <rank type="Council Members"> + <level>34</level> + <name>First Preceptor</name> + <experience>1910000</experience> + </rank> + <rank type="Council Members"> + <level>35</level> + <name>High Preceptor</name> + <experience>2065000</experience> + </rank> + <rank type="Council Members"> + <level>36</level> + <name>Phaeton</name> + <experience>2230000</experience> + </rank> + <rank type="Council Members"> + <level>37</level> + <name>First Phaeton</name> + <experience>2400000</experience> + </rank> + <rank type="Council Members"> + <level>38</level> + <name>High Phaeton</name> + <experience>2650000</experience> + </rank> + <rank type="Council Members"> + <level>39</level> + <name>Empirius</name> + <experience>3000000</experience> + </rank> + + <rank type="High Heroes"> + <level>40</level> + <name>Praetorius</name> + <experience>3300000</experience> + </rank> + <rank type="High Heroes"> + <level>41</level> + <name>First Praetorius</name> + <experience>3700000</experience> + </rank> + <rank type="High Heroes"> + <level>42</level> + <name>Higth Praetorius</name> + <experience>4200000</experience> + </rank> + <rank type="High Heroes"> + <level>43</level> + <name>Ardean</name> + <experience>4700000</experience> + </rank> + <rank type="High Heroes"> + <level>44</level> + <name>First Ardean</name> + <experience>5300000</experience> + </rank> + <rank type="High Heroes"> + <level>45</level> + <name>High Ardean</name> + <experience>5900000</experience> + </rank> + <rank type="High Heroes"> + <level>46</level> + <name>Vendictor</name> + <experience>6500000</experience> + </rank> + <rank type="High Heroes"> + <level>47</level> + <name>First Vendictor</name> + <experience>7500000</experience> + </rank> + <rank type="High Heroes"> + <level>48</level> + <name>High Vendictor</name> + <experience>8500000</experience> + </rank> + + <rank type="Premiers"> + <level>49</level> + <name>Octavius Alterion</name> + <experience>9500000</experience> + </rank> + <rank type="Premiers"> + <level>50</level> + <name>Octavius Optimus</name> + <experience>12000000</experience> + </rank> +</rank-matrix> \ No newline at end of file Property changes on: trunk/data/rankings/octavius_rankings.xml ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ult...@us...> - 2006-12-10 00:11:42
|
Revision: 285 http://svn.sourceforge.net/opengate/?rev=285&view=rev Author: ultrasick Date: 2006-12-09 16:11:42 -0800 (Sat, 09 Dec 2006) Log Message: ----------- just renaming some stuff Added Paths: ----------- trunk/data/rankings/ trunk/data/rankings/00.png trunk/data/rankings/00.svg trunk/data/rankings/01.png trunk/data/rankings/01.svg trunk/data/rankings/02.png trunk/data/rankings/02.svg trunk/data/rankings/03.png trunk/data/rankings/03.svg trunk/data/rankings/04.png trunk/data/rankings/04.svg trunk/data/rankings/05.png trunk/data/rankings/05.svg trunk/data/rankings/06.png trunk/data/rankings/06.svg trunk/data/rankings/07.png trunk/data/rankings/07.svg trunk/data/rankings/08.png trunk/data/rankings/08.svg trunk/data/rankings/09.png trunk/data/rankings/09.svg trunk/data/rankings/10.png trunk/data/rankings/10.svg trunk/data/rankings/11.png trunk/data/rankings/11.svg trunk/data/rankings/12.png trunk/data/rankings/12.svg trunk/data/rankings/13.png trunk/data/rankings/13.svg trunk/data/rankings/14.png trunk/data/rankings/14.svg trunk/data/rankings/15.png trunk/data/rankings/15.svg trunk/data/rankings/16.png trunk/data/rankings/16.svg trunk/data/rankings/17.png trunk/data/rankings/17.svg trunk/data/rankings/18.png trunk/data/rankings/18.svg trunk/data/rankings/19.png trunk/data/rankings/19.svg trunk/data/rankings/20.png trunk/data/rankings/20.svg trunk/data/rankings/21.png trunk/data/rankings/21.svg trunk/data/rankings/22.png trunk/data/rankings/22.svg trunk/data/rankings/23.png trunk/data/rankings/23.svg trunk/data/rankings/24.png trunk/data/rankings/24.svg trunk/data/rankings/25.png trunk/data/rankings/25.svg trunk/data/rankings/26.png trunk/data/rankings/26.svg trunk/data/rankings/27.png trunk/data/rankings/27.svg trunk/data/rankings/28.png trunk/data/rankings/28.svg trunk/data/rankings/29.png trunk/data/rankings/29.svg trunk/data/rankings/30.png trunk/data/rankings/30.svg trunk/data/rankings/31.png trunk/data/rankings/31.svg trunk/data/rankings/32.png trunk/data/rankings/32.svg trunk/data/rankings/33.png trunk/data/rankings/33.svg trunk/data/rankings/34.png trunk/data/rankings/34.svg trunk/data/rankings/35.png trunk/data/rankings/35.svg trunk/data/rankings/36.png trunk/data/rankings/36.svg trunk/data/rankings/37.png trunk/data/rankings/37.svg trunk/data/rankings/38.png trunk/data/rankings/38.svg trunk/data/rankings/39.png trunk/data/rankings/39.svg trunk/data/rankings/40.png trunk/data/rankings/40.svg trunk/data/rankings/41.png trunk/data/rankings/41.svg trunk/data/rankings/42.png trunk/data/rankings/42.svg trunk/data/rankings/43.png trunk/data/rankings/43.svg trunk/data/rankings/44.png trunk/data/rankings/44.svg trunk/data/rankings/45.png trunk/data/rankings/45.svg trunk/data/rankings/46.png trunk/data/rankings/46.svg trunk/data/rankings/47.png trunk/data/rankings/47.svg trunk/data/rankings/48.png trunk/data/rankings/48.svg trunk/data/rankings/49.png trunk/data/rankings/49.svg trunk/data/rankings/50.png trunk/data/rankings/50.svg trunk/data/rankings/Makefile.am trunk/data/rankings/convert.sh Added: trunk/data/rankings/00.png =================================================================== (Binary files differ) Property changes on: trunk/data/rankings/00.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/rankings/00.svg =================================================================== --- trunk/data/rankings/00.svg (rev 0) +++ trunk/data/rankings/00.svg 2006-12-10 00:11:42 UTC (rev 285) @@ -0,0 +1,145 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="64px" + height="64px" + id="svg1918" + sodipodi:version="0.32" + inkscape:version="0.43+devel" + sodipodi:docbase="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings" + sodipodi:docname="00.svg" + inkscape:export-filename="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings\00.png" + inkscape:export-xdpi="45" + inkscape:export-ydpi="45"> + <defs + id="defs1920"> + <linearGradient + id="linearGradient8984"> + <stop + style="stop-color:#dfdfdf;stop-opacity:1;" + offset="0" + id="stop8986" /> + <stop + style="stop-color:#929292;stop-opacity:1;" + offset="1" + id="stop8988" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8990" + x1="29.181818" + y1="2.6363635" + x2="29.545454" + y2="7" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8992" + x1="29.636364" + y1="57" + x2="30.09091" + y2="61.454544" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8994" + x1="10.371205" + y1="12.21527" + x2="54.885921" + y2="54.641678" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8996" + x1="33.093365" + y1="32.28624" + x2="31.906633" + y2="31.10688" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="12.71875" + inkscape:cx="32" + inkscape:cy="32" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:document-units="px" + inkscape:grid-bbox="true" + inkscape:window-width="1280" + inkscape:window-height="977" + inkscape:window-x="-4" + inkscape:window-y="-4" /> + <metadata + id="metadata1923"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + d="M 6.21875,3.0001662 C 5.28267,3.0237236 4.53125,3.808209 4.53125,4.7501662 C 4.53125,5.7070753 5.32433,6.4689162 6.28125,6.4689162 L 7.53125,6.4689162 L 7.53125,57.468916 L 6.28125,57.468916 C 5.32434,57.468916 4.53125,58.230758 4.53125,59.187666 C 4.53125,60.144575 5.32433,60.937667 6.28125,60.937666 L 59.8125,60.937666 C 60.76941,60.937666 61.53125,60.144576 61.53125,59.187666 C 61.53125,58.230757 60.76942,57.468916 59.8125,57.468916 L 58.53125,57.468916 L 58.53125,6.4689162 L 59.8125,6.4689162 C 60.76941,6.4689162 61.53125,5.7070755 61.53125,4.7501662 C 61.53125,3.7932571 60.76942,3.0001662 59.8125,3.0001662 L 6.28125,3.0001662 C 6.2663,3.0001662 6.23361,2.9997923 6.21875,3.0001662 z " + id="rect7223" /> + <rect + style="opacity:1;fill:#302a08;fill-opacity:1;stroke:url(#linearGradient8994);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect1926" + width="50.999996" + height="51" + x="7" + y="6" + ry="0" /> + <rect + style="opacity:1;fill:#696969;fill-opacity:1.0;stroke:url(#linearGradient8990);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect1932" + width="57" + height="3.4545455" + x="4" + y="2.5454545" + ry="1.7272727" + rx="1.7272727" /> + <rect + ry="0.64282435" + y="11" + x="12" + height="41" + width="41" + id="rect4599" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient8996);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="0.64282435" /> + <rect + rx="1.7272727" + ry="1.7272727" + y="57" + x="4" + height="3.4545455" + width="57" + id="rect4601" + style="opacity:1;fill:#696969;fill-opacity:1.0;stroke:url(#linearGradient8992);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> +</svg> Property changes on: trunk/data/rankings/00.svg ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/data/rankings/01.png =================================================================== (Binary files differ) Property changes on: trunk/data/rankings/01.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/rankings/01.svg =================================================================== --- trunk/data/rankings/01.svg (rev 0) +++ trunk/data/rankings/01.svg 2006-12-10 00:11:42 UTC (rev 285) @@ -0,0 +1,255 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="64px" + height="64px" + id="svg1918" + sodipodi:version="0.32" + inkscape:version="0.43+devel" + sodipodi:docbase="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings" + sodipodi:docname="01.svg" + inkscape:export-filename="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings\01.png" + inkscape:export-xdpi="45" + inkscape:export-ydpi="45"> + <defs + id="defs1920"> + <linearGradient + id="linearGradient8984"> + <stop + style="stop-color:#dfdfdf;stop-opacity:1;" + offset="0" + id="stop8986" /> + <stop + style="stop-color:#929292;stop-opacity:1;" + offset="1" + id="stop8988" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8990" + x1="29.181818" + y1="2.6363635" + x2="29.545454" + y2="7" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8992" + x1="29.636364" + y1="57" + x2="30.09091" + y2="61.454544" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8994" + x1="10.371205" + y1="12.21527" + x2="54.885921" + y2="54.641678" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8996" + x1="33.093365" + y1="32.28624" + x2="31.906633" + y2="31.10688" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2808" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2812" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2816" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2824" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2826" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2828" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2836" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2838" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2840" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="12.71875" + inkscape:cx="32" + inkscape:cy="32" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:document-units="px" + inkscape:grid-bbox="true" + inkscape:window-width="1280" + inkscape:window-height="977" + inkscape:window-x="-4" + inkscape:window-y="-4" /> + <metadata + id="metadata1923"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + d="M 6.21875,3.0001662 C 5.28267,3.0237236 4.53125,3.808209 4.53125,4.7501662 C 4.53125,5.7070753 5.32433,6.4689162 6.28125,6.4689162 L 7.53125,6.4689162 L 7.53125,57.468916 L 6.28125,57.468916 C 5.32434,57.468916 4.53125,58.230758 4.53125,59.187666 C 4.53125,60.144575 5.32433,60.937667 6.28125,60.937666 L 59.8125,60.937666 C 60.76941,60.937666 61.53125,60.144576 61.53125,59.187666 C 61.53125,58.230757 60.76942,57.468916 59.8125,57.468916 L 58.53125,57.468916 L 58.53125,6.4689162 L 59.8125,6.4689162 C 60.76941,6.4689162 61.53125,5.7070755 61.53125,4.7501662 C 61.53125,3.7932571 60.76942,3.0001662 59.8125,3.0001662 L 6.28125,3.0001662 C 6.2663,3.0001662 6.23361,2.9997923 6.21875,3.0001662 z " + id="rect7223" /> + <rect + style="opacity:1;fill:#302a08;fill-opacity:1;stroke:url(#linearGradient8994);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect1926" + width="50.999996" + height="51" + x="7" + y="6" + ry="0" /> + <rect + style="opacity:1;fill:#696969;fill-opacity:1.0;stroke:url(#linearGradient8990);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect1932" + width="57" + height="3.4545455" + x="4" + y="2.5454545" + ry="1.7272727" + rx="1.7272727" /> + <rect + ry="0.64282435" + y="11" + x="12" + height="41" + width="41" + id="rect4599" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient8996);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="0.64282435" /> + <rect + rx="1.7272727" + ry="1.7272727" + y="57" + x="4" + height="3.4545455" + width="57" + id="rect4601" + style="opacity:1;fill:#696969;fill-opacity:1.0;stroke:url(#linearGradient8992);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + transform="matrix(0.978365,0,0,0.978365,10.31791,-4.205036)" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + sodipodi:ry="5.1105652" + sodipodi:rx="5.1105652" + sodipodi:cy="36.40295" + sodipodi:cx="22.643734" + id="path2850" + style="opacity:1;fill:black;fill-opacity:0.50196078;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient2826);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + id="path2820" + sodipodi:cx="22.643734" + sodipodi:cy="36.40295" + sodipodi:rx="5.1105652" + sodipodi:ry="5.1105652" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + transform="matrix(0.978365,0,0,0.978365,9.846161,-4.615374)" /> + </g> +</svg> Property changes on: trunk/data/rankings/01.svg ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/data/rankings/02.png =================================================================== (Binary files differ) Property changes on: trunk/data/rankings/02.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/rankings/02.svg =================================================================== --- trunk/data/rankings/02.svg (rev 0) +++ trunk/data/rankings/02.svg 2006-12-10 00:11:42 UTC (rev 285) @@ -0,0 +1,275 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="64px" + height="64px" + id="svg1918" + sodipodi:version="0.32" + inkscape:version="0.43+devel" + sodipodi:docbase="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings" + sodipodi:docname="02.svg" + inkscape:export-filename="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings\03.png" + inkscape:export-xdpi="45" + inkscape:export-ydpi="45"> + <defs + id="defs1920"> + <linearGradient + id="linearGradient8984"> + <stop + style="stop-color:#dfdfdf;stop-opacity:1;" + offset="0" + id="stop8986" /> + <stop + style="stop-color:#929292;stop-opacity:1;" + offset="1" + id="stop8988" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8990" + x1="29.181818" + y1="2.6363635" + x2="29.545454" + y2="7" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8992" + x1="29.636364" + y1="57" + x2="30.09091" + y2="61.454544" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8994" + x1="10.371205" + y1="12.21527" + x2="54.885921" + y2="54.641678" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8996" + x1="33.093365" + y1="32.28624" + x2="31.906633" + y2="31.10688" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2808" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2812" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2816" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2824" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2826" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2828" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2836" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2838" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2840" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="12.71875" + inkscape:cx="32" + inkscape:cy="32" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:document-units="px" + inkscape:grid-bbox="true" + inkscape:window-width="1280" + inkscape:window-height="977" + inkscape:window-x="-4" + inkscape:window-y="-4" /> + <metadata + id="metadata1923"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + d="M 6.21875,3.0001662 C 5.28267,3.0237236 4.53125,3.808209 4.53125,4.7501662 C 4.53125,5.7070753 5.32433,6.4689162 6.28125,6.4689162 L 7.53125,6.4689162 L 7.53125,57.468916 L 6.28125,57.468916 C 5.32434,57.468916 4.53125,58.230758 4.53125,59.187666 C 4.53125,60.144575 5.32433,60.937667 6.28125,60.937666 L 59.8125,60.937666 C 60.76941,60.937666 61.53125,60.144576 61.53125,59.187666 C 61.53125,58.230757 60.76942,57.468916 59.8125,57.468916 L 58.53125,57.468916 L 58.53125,6.4689162 L 59.8125,6.4689162 C 60.76941,6.4689162 61.53125,5.7070755 61.53125,4.7501662 C 61.53125,3.7932571 60.76942,3.0001662 59.8125,3.0001662 L 6.28125,3.0001662 C 6.2663,3.0001662 6.23361,2.9997923 6.21875,3.0001662 z " + id="rect7223" /> + <rect + style="opacity:1;fill:#302a08;fill-opacity:1;stroke:url(#linearGradient8994);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect1926" + width="50.999996" + height="51" + x="7" + y="6" + ry="0" /> + <path + transform="matrix(0.978365,0,0,0.978365,-1.682104,-16.20505)" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + sodipodi:ry="5.1105652" + sodipodi:rx="5.1105652" + sodipodi:cy="36.40295" + sodipodi:cx="22.643734" + id="path2842" + style="opacity:1;fill:black;fill-opacity:0.50196078;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <rect + style="opacity:1;fill:#696969;fill-opacity:1.0;stroke:url(#linearGradient8990);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect1932" + width="57" + height="3.4545455" + x="4" + y="2.5454545" + ry="1.7272727" + rx="1.7272727" /> + <rect + ry="0.64282435" + y="11" + x="12" + height="41" + width="41" + id="rect4599" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient8996);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="0.64282435" /> + <rect + rx="1.7272727" + ry="1.7272727" + y="57" + x="4" + height="3.4545455" + width="57" + id="rect4601" + style="opacity:1;fill:#696969;fill-opacity:1.0;stroke:url(#linearGradient8992);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient2808);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + id="path1927" + sodipodi:cx="22.643734" + sodipodi:cy="36.40295" + sodipodi:rx="5.1105652" + sodipodi:ry="5.1105652" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + transform="matrix(0.978365,0,0,0.978365,-2.153845,-16.61539)" /> + <path + transform="matrix(0.978365,0,0,0.978365,22.3179,-16.20505)" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + sodipodi:ry="5.1105652" + sodipodi:rx="5.1105652" + sodipodi:cy="36.40295" + sodipodi:cx="22.643734" + id="path2854" + style="opacity:1;fill:black;fill-opacity:0.50196078;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient2836);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + id="path2830" + sodipodi:cx="22.643734" + sodipodi:cy="36.40295" + sodipodi:rx="5.1105652" + sodipodi:ry="5.1105652" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + transform="matrix(0.978365,0,0,0.978365,21.84615,-16.61539)" /> + </g> +</svg> Property changes on: trunk/data/rankings/02.svg ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/data/rankings/03.png =================================================================== (Binary files differ) Property changes on: trunk/data/rankings/03.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/rankings/03.svg =================================================================== --- trunk/data/rankings/03.svg (rev 0) +++ trunk/data/rankings/03.svg 2006-12-10 00:11:42 UTC (rev 285) @@ -0,0 +1,295 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="64px" + height="64px" + id="svg1918" + sodipodi:version="0.32" + inkscape:version="0.43+devel" + sodipodi:docbase="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings" + sodipodi:docname="03.svg" + inkscape:export-filename="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings\04.png" + inkscape:export-xdpi="45" + inkscape:export-ydpi="45"> + <defs + id="defs1920"> + <linearGradient + id="linearGradient8984"> + <stop + style="stop-color:#dfdfdf;stop-opacity:1;" + offset="0" + id="stop8986" /> + <stop + style="stop-color:#929292;stop-opacity:1;" + offset="1" + id="stop8988" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8990" + x1="29.181818" + y1="2.6363635" + x2="29.545454" + y2="7" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8992" + x1="29.636364" + y1="57" + x2="30.09091" + y2="61.454544" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8994" + x1="10.371205" + y1="12.21527" + x2="54.885921" + y2="54.641678" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8996" + x1="33.093365" + y1="32.28624" + x2="31.906633" + y2="31.10688" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2808" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2812" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2816" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2824" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2826" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2828" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2836" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2838" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2840" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="12.71875" + inkscape:cx="32" + inkscape:cy="32" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:document-units="px" + inkscape:grid-bbox="true" + inkscape:window-width="1280" + inkscape:window-height="977" + inkscape:window-x="-4" + inkscape:window-y="-4" /> + <metadata + id="metadata1923"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + d="M 6.21875,3.0001662 C 5.28267,3.0237236 4.53125,3.808209 4.53125,4.7501662 C 4.53125,5.7070753 5.32433,6.4689162 6.28125,6.4689162 L 7.53125,6.4689162 L 7.53125,57.468916 L 6.28125,57.468916 C 5.32434,57.468916 4.53125,58.230758 4.53125,59.187666 C 4.53125,60.144575 5.32433,60.937667 6.28125,60.937666 L 59.8125,60.937666 C 60.76941,60.937666 61.53125,60.144576 61.53125,59.187666 C 61.53125,58.230757 60.76942,57.468916 59.8125,57.468916 L 58.53125,57.468916 L 58.53125,6.4689162 L 59.8125,6.4689162 C 60.76941,6.4689162 61.53125,5.7070755 61.53125,4.7501662 C 61.53125,3.7932571 60.76942,3.0001662 59.8125,3.0001662 L 6.28125,3.0001662 C 6.2663,3.0001662 6.23361,2.9997923 6.21875,3.0001662 z " + id="rect7223" /> + <rect + style="opacity:1;fill:#302a08;fill-opacity:1;stroke:url(#linearGradient8994);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect1926" + width="50.999996" + height="51" + x="7" + y="6" + ry="0" /> + <path + transform="matrix(0.978365,0,0,0.978365,-1.682104,-16.20505)" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + sodipodi:ry="5.1105652" + sodipodi:rx="5.1105652" + sodipodi:cy="36.40295" + sodipodi:cx="22.643734" + id="path2842" + style="opacity:1;fill:black;fill-opacity:0.50196078;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <rect + style="opacity:1;fill:#696969;fill-opacity:1.0;stroke:url(#linearGradient8990);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect1932" + width="57" + height="3.4545455" + x="4" + y="2.5454545" + ry="1.7272727" + rx="1.7272727" /> + <rect + ry="0.64282435" + y="11" + x="12" + height="41" + width="41" + id="rect4599" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient8996);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="0.64282435" /> + <rect + rx="1.7272727" + ry="1.7272727" + y="57" + x="4" + height="3.4545455" + width="57" + id="rect4601" + style="opacity:1;fill:#696969;fill-opacity:1.0;stroke:url(#linearGradient8992);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient2808);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + id="path1927" + sodipodi:cx="22.643734" + sodipodi:cy="36.40295" + sodipodi:rx="5.1105652" + sodipodi:ry="5.1105652" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + transform="matrix(0.978365,0,0,0.978365,-2.153845,-16.61539)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:black;fill-opacity:0.50196078;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path2852" + sodipodi:cx="22.643734" + sodipodi:cy="36.40295" + sodipodi:rx="5.1105652" + sodipodi:ry="5.1105652" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + transform="matrix(0.978365,0,0,0.978365,10.31791,7.794961)" /> + <path + transform="matrix(0.978365,0,0,0.978365,22.3179,-16.20505)" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + sodipodi:ry="5.1105652" + sodipodi:rx="5.1105652" + sodipodi:cy="36.40295" + sodipodi:cx="22.643734" + id="path2854" + style="opacity:1;fill:black;fill-opacity:0.50196078;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + transform="matrix(0.978365,0,0,0.978365,9.846161,7.384626)" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + sodipodi:ry="5.1105652" + sodipodi:rx="5.1105652" + sodipodi:cy="36.40295" + sodipodi:cx="22.643734" + id="path2822" + style="opacity:1;fill:url(#radialGradient2828);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient2836);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + id="path2830" + sodipodi:cx="22.643734" + sodipodi:cy="36.40295" + sodipodi:rx="5.1105652" + sodipodi:ry="5.1105652" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + transform="matrix(0.978365,0,0,0.978365,21.84615,-16.61539)" /> + </g> +</svg> Property changes on: trunk/data/rankings/03.svg ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/data/rankings/04.png =================================================================== (Binary files differ) Property changes on: trunk/data/rankings/04.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/rankings/04.svg =================================================================== --- trunk/data/rankings/04.svg (rev 0) +++ trunk/data/rankings/04.svg 2006-12-10 00:11:42 UTC (rev 285) @@ -0,0 +1,315 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="64px" + height="64px" + id="svg1918" + sodipodi:version="0.32" + inkscape:version="0.43+devel" + sodipodi:docbase="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings" + sodipodi:docname="04.svg" + inkscape:export-filename="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings\05.png" + inkscape:export-xdpi="45" + inkscape:export-ydpi="45"> + <defs + id="defs1920"> + <linearGradient + id="linearGradient8984"> + <stop + style="stop-color:#dfdfdf;stop-opacity:1;" + offset="0" + id="stop8986" /> + <stop + style="stop-color:#929292;stop-opacity:1;" + offset="1" + id="stop8988" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8990" + x1="29.181818" + y1="2.6363635" + x2="29.545454" + y2="7" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8992" + x1="29.636364" + y1="57" + x2="30.09091" + y2="61.454544" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8994" + x1="10.371205" + y1="12.21527" + x2="54.885921" + y2="54.641678" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8996" + x1="33.093365" + y1="32.28624" + x2="31.906633" + y2="31.10688" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2808" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2812" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2816" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2824" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2826" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2828" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2836" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2838" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="radialGradient2840" + gradientUnits="userSpaceOnUse" + cx="22.014742" + cy="35.380836" + fx="22.014742" + fy="35.380836" + r="3.6167076" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="12.71875" + inkscape:cx="32" + inkscape:cy="32" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:document-units="px" + inkscape:grid-bbox="true" + inkscape:window-width="1280" + inkscape:window-height="977" + inkscape:window-x="-4" + inkscape:window-y="-4" /> + <metadata + id="metadata1923"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer"> + <path + style="opacity:1;fill:none;fill-opacity:1;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + d="M 6.21875,3.0001662 C 5.28267,3.0237236 4.53125,3.808209 4.53125,4.7501662 C 4.53125,5.7070753 5.32433,6.4689162 6.28125,6.4689162 L 7.53125,6.4689162 L 7.53125,57.468916 L 6.28125,57.468916 C 5.32434,57.468916 4.53125,58.230758 4.53125,59.187666 C 4.53125,60.144575 5.32433,60.937667 6.28125,60.937666 L 59.8125,60.937666 C 60.76941,60.937666 61.53125,60.144576 61.53125,59.187666 C 61.53125,58.230757 60.76942,57.468916 59.8125,57.468916 L 58.53125,57.468916 L 58.53125,6.4689162 L 59.8125,6.4689162 C 60.76941,6.4689162 61.53125,5.7070755 61.53125,4.7501662 C 61.53125,3.7932571 60.76942,3.0001662 59.8125,3.0001662 L 6.28125,3.0001662 C 6.2663,3.0001662 6.23361,2.9997923 6.21875,3.0001662 z " + id="rect7223" /> + <rect + style="opacity:1;fill:#302a08;fill-opacity:1;stroke:url(#linearGradient8994);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect1926" + width="50.999996" + height="51" + x="7" + y="6" + ry="0" /> + <path + transform="matrix(0.978365,0,0,0.978365,-1.682104,-16.20505)" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + sodipodi:ry="5.1105652" + sodipodi:rx="5.1105652" + sodipodi:cy="36.40295" + sodipodi:cx="22.643734" + id="path2842" + style="opacity:1;fill:black;fill-opacity:0.50196078;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <rect + style="opacity:1;fill:#696969;fill-opacity:1.0;stroke:url(#linearGradient8990);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect1932" + width="57" + height="3.4545455" + x="4" + y="2.5454545" + ry="1.7272727" + rx="1.7272727" /> + <rect + ry="0.64282435" + y="11" + x="12" + height="41" + width="41" + id="rect4599" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient8996);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + rx="0.64282435" /> + <rect + rx="1.7272727" + ry="1.7272727" + y="57" + x="4" + height="3.4545455" + width="57" + id="rect4601" + style="opacity:1;fill:#696969;fill-opacity:1.0;stroke:url(#linearGradient8992);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient2808);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + id="path1927" + sodipodi:cx="22.643734" + sodipodi:cy="36.40295" + sodipodi:rx="5.1105652" + sodipodi:ry="5.1105652" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + transform="matrix(0.978365,0,0,0.978365,-2.153845,-16.61539)" /> + <path + transform="matrix(0.978365,0,0,0.978365,-1.682094,7.794961)" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + sodipodi:ry="5.1105652" + sodipodi:rx="5.1105652" + sodipodi:cy="36.40295" + sodipodi:cx="22.643734" + id="path2846" + style="opacity:1;fill:black;fill-opacity:0.50196078;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient2816);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + id="path2814" + sodipodi:cx="22.643734" + sodipodi:cy="36.40295" + sodipodi:rx="5.1105652" + sodipodi:ry="5.1105652" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + transform="matrix(0.978365,0,0,0.978365,-2.153835,7.384626)" /> + <path + transform="matrix(0.978365,0,0,0.978365,22.3179,-16.20505)" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + sodipodi:ry="5.1105652" + sodipodi:rx="5.1105652" + sodipodi:cy="36.40295" + sodipodi:cx="22.643734" + id="path2854" + style="opacity:1;fill:black;fill-opacity:0.50196078;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient2836);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + id="path2830" + sodipodi:cx="22.643734" + sodipodi:cy="36.40295" + sodipodi:rx="5.1105652" + sodipodi:ry="5.1105652" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + transform="matrix(0.978365,0,0,0.978365,21.84615,-16.61539)" /> + <path + transform="matrix(0.978365,0,0,0.978365,22.31791,7.794971)" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + sodipodi:ry="5.1105652" + sodipodi:rx="5.1105652" + sodipodi:cy="36.40295" + sodipodi:cx="22.643734" + id="path2858" + style="opacity:1;fill:black;fill-opacity:0.50196078;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient2840);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.50196078" + id="path2834" + sodipodi:cx="22.643734" + sodipodi:cy="36.40295" + sodipodi:rx="5.1105652" + sodipodi:ry="5.1105652" + d="M 27.754299 36.40295 A 5.1105652 5.1105652 0 1 1 17.533169,36.40295 A 5.1105652 5.1105652 0 1 1 27.754299 36.40295 z" + transform="matrix(0.978365,0,0,0.978365,21.84616,7.384629)" /> + </g> +</svg> Property changes on: trunk/data/rankings/04.svg ___________________________________________________________________ Name: svn:mime-type + text/plain Name: svn:eol-style + native Added: trunk/data/rankings/05.png =================================================================== (Binary files differ) Property changes on: trunk/data/rankings/05.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/data/rankings/05.svg =================================================================== --- trunk/data/rankings/05.svg (rev 0) +++ trunk/data/rankings/05.svg 2006-12-10 00:11:42 UTC (rev 285) @@ -0,0 +1,335 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="64px" + height="64px" + id="svg1918" + sodipodi:version="0.32" + inkscape:version="0.43+devel" + sodipodi:docbase="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings" + sodipodi:docname="05.svg" + inkscape:export-filename="C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\opengate\data\Rankings\06.png" + inkscape:export-xdpi="45" + inkscape:export-ydpi="45"> + <defs + id="defs1920"> + <linearGradient + id="linearGradient8984"> + <stop + style="stop-color:#dfdfdf;stop-opacity:1;" + offset="0" + id="stop8986" /> + <stop + style="stop-color:#929292;stop-opacity:1;" + offset="1" + id="stop8988" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8990" + x1="29.181818" + y1="2.6363635" + x2="29.545454" + y2="7" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8992" + x1="29.636364" + y1="57" + x2="30.09091" + y2="61.454544" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8994" + x1="10.371205" + y1="12.21527" + x2="54.885921" + y2="54.641678" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8984" + id="linearGradient8996" + x1="33.... [truncated message content] |
From: <ult...@us...> - 2006-12-10 00:07:05
|
Revision: 284 http://svn.sourceforge.net/opengate/?rev=284&view=rev Author: ultrasick Date: 2006-12-09 16:07:05 -0800 (Sat, 09 Dec 2006) Log Message: ----------- added new Contender XL blender model Added Paths: ----------- trunk/data/power_plants/contender_xl.blend Added: trunk/data/power_plants/contender_xl.blend =================================================================== (Binary files differ) Property changes on: trunk/data/power_plants/contender_xl.blend ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ult...@us...> - 2006-12-09 23:59:13
|
Revision: 283 http://svn.sourceforge.net/opengate/?rev=283&view=rev Author: ultrasick Date: 2006-12-09 15:59:11 -0800 (Sat, 09 Dec 2006) Log Message: ----------- just renaming some stuff Added Paths: ----------- trunk/data/menus/ trunk/data/menus/ogre_menu.zip Added: trunk/data/menus/ogre_menu.zip =================================================================== (Binary files differ) Property changes on: trunk/data/menus/ogre_menu.zip ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |