| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- /*
- * This source file is part of libRocket, the HTML/CSS Interface Middleware
- *
- * For the latest information, see http://www.librocket.com
- *
- * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- *
- */
- #include "precompiled.h"
- #include "../../Include/Rocket/Core.h"
- #include "EventSpecification.h"
- #include "FileInterfaceDefault.h"
- #include "GeometryDatabase.h"
- #include "PluginRegistry.h"
- #include "StyleSheetFactory.h"
- #include "TemplateCache.h"
- #include "TextureDatabase.h"
- #include "EventSpecification.h"
- namespace Rocket {
- namespace Core {
- // Rocket's renderer interface.
- static RenderInterface* render_interface = NULL;
- /// Rocket's system interface.
- static SystemInterface* system_interface = NULL;
- // Rocket's file I/O interface.
- FileInterface* file_interface = NULL;
- #ifndef ROCKET_NO_FILE_INTERFACE_DEFAULT
- static FileInterfaceDefault file_interface_default;
- #endif
- static bool initialised = false;
- typedef UnorderedMap< String, Context* > ContextMap;
- static ContextMap contexts;
- #ifndef ROCKET_VERSION
- #define ROCKET_VERSION "custom"
- #endif
- /**
- A 'plugin' for unobtrusively intercepting the destruction of contexts.
- */
- class PluginContextRelease : public Plugin
- {
- public:
- virtual void OnShutdown()
- {
- delete this;
- }
- virtual void OnContextDestroy(Context* context)
- {
- contexts.erase(context->GetName());
- }
- };
- bool Initialise()
- {
- // Check for valid interfaces, or install default interfaces as appropriate.
- if (system_interface == NULL)
- {
- Log::Message(Log::LT_ERROR, "No system interface set!");
- return false;
- }
- if (file_interface == NULL)
- {
- #ifndef ROCKET_NO_FILE_INTERFACE_DEFAULT
- file_interface = &file_interface_default;
- file_interface->AddReference();
- #else
- Log::Message(Log::LT_ERROR, "No file interface set!");
- return false;
- #endif
- }
- Log::Initialise();
- EventSpecificationInterface::Initialize();
- TextureDatabase::Initialise();
- FontDatabase::Initialise();
- StyleSheetSpecification::Initialise();
- StyleSheetFactory::Initialise();
- TemplateCache::Initialise();
- Factory::Initialise();
- // Notify all plugins we're starting up.
- PluginRegistry::RegisterPlugin(new PluginContextRelease());
- PluginRegistry::NotifyInitialise();
- initialised = true;
- return true;
- }
- void Shutdown()
- {
- // Notify all plugins we're being shutdown.
- PluginRegistry::NotifyShutdown();
- // Release all remaining contexts.
- for (ContextMap::iterator itr = contexts.begin(); itr != contexts.end(); ++itr)
- Core::Log::Message(Log::LT_WARNING, "Context '%s' still active on shutdown.", (*itr).first.c_str());
- contexts.clear();
- TemplateCache::Shutdown();
- StyleSheetFactory::Shutdown();
- StyleSheetSpecification::Shutdown();
- FontDatabase::Shutdown();
- TextureDatabase::Shutdown();
- Factory::Shutdown();
- Log::Shutdown();
- initialised = false;
- if (render_interface != NULL)
- render_interface->RemoveReference();
- if (file_interface != NULL)
- file_interface->RemoveReference();
- if (system_interface != NULL)
- system_interface->RemoveReference();
-
- render_interface = NULL;
- file_interface = NULL;
- system_interface = NULL;
- }
- // Returns the version of this Rocket library.
- String GetVersion()
- {
- return ROCKET_VERSION;
- }
- // Sets the interface through which all Rocket messages will be routed.
- void SetSystemInterface(SystemInterface* _system_interface)
- {
- if (system_interface == _system_interface)
- return;
- if (system_interface != NULL)
- system_interface->RemoveReference();
- system_interface = _system_interface;
- if (system_interface != NULL)
- system_interface->AddReference();
- }
- // Returns Rocket's system interface.
- SystemInterface* GetSystemInterface()
- {
- return system_interface;
- }
- // Sets the interface through which all rendering requests are made.
- void SetRenderInterface(RenderInterface* _render_interface)
- {
- if (render_interface == _render_interface)
- return;
- if (render_interface != NULL)
- render_interface->RemoveReference();
- render_interface = _render_interface;
- if (render_interface != NULL)
- render_interface->AddReference();
- }
- // Returns Rocket's render interface.
- RenderInterface* GetRenderInterface()
- {
- return render_interface;
- }
- // Sets the interface through which all file I/O requests are made.
- void SetFileInterface(FileInterface* _file_interface)
- {
- if (file_interface == _file_interface)
- return;
- if (file_interface != NULL)
- file_interface->RemoveReference();
- file_interface = _file_interface;
- if (file_interface != NULL)
- file_interface->AddReference();
- }
- // Returns Rocket's file interface.
- FileInterface* GetFileInterface()
- {
- return file_interface;
- }
- // Creates a new element context.
- Context* CreateContext(const String& name, const Vector2i& dimensions, RenderInterface* custom_render_interface)
- {
- if (!initialised)
- return NULL;
- if (custom_render_interface == NULL &&
- render_interface == NULL)
- {
- Log::Message(Log::LT_WARNING, "Failed to create context '%s', no render interface specified and no default render interface exists.", name.c_str());
- return NULL;
- }
- if (GetContext(name) != NULL)
- {
- Log::Message(Log::LT_WARNING, "Failed to create context '%s', context already exists.", name.c_str());
- return NULL;
- }
- Context* new_context = Factory::InstanceContext(name);
- if (new_context == NULL)
- {
- Log::Message(Log::LT_WARNING, "Failed to instance context '%s', instancer returned NULL.", name.c_str());
- return NULL;
- }
- // Set the render interface on the context, and add a reference onto it.
- if (custom_render_interface)
- new_context->render_interface = custom_render_interface;
- else
- new_context->render_interface = render_interface;
- new_context->render_interface->AddReference();
- new_context->SetDimensions(dimensions);
- if (dimensions.x > 0 && dimensions.y > 0)
- {
- // install an orthographic projection, by default
- Matrix4f P = Matrix4f::ProjectOrtho(0, (float)dimensions.x, (float)dimensions.y, 0, -1, 1);
- new_context->ProcessProjectionChange(P);
- // install an identity view, by default
- new_context->ProcessViewChange(Matrix4f::Identity());
- }
- contexts[name] = new_context;
- PluginRegistry::NotifyContextCreate(new_context);
- return new_context;
- }
- // Fetches a previously constructed context by name.
- Context* GetContext(const String& name)
- {
- ContextMap::iterator i = contexts.find(name);
- if (i == contexts.end())
- return NULL;
- return (*i).second;
- }
- // Fetches a context by index.
- Context* GetContext(int index)
- {
- ContextMap::iterator i = contexts.begin();
- int count = 0;
- if (index >= GetNumContexts())
- index = GetNumContexts() - 1;
- while (count < index)
- {
- ++i;
- ++count;
- }
- if (i == contexts.end())
- return NULL;
- return (*i).second;
- }
- // Returns the number of active contexts.
- int GetNumContexts()
- {
- return (int) contexts.size();
- }
- // Registers a generic rocket plugin
- void RegisterPlugin(Plugin* plugin)
- {
- if (initialised)
- plugin->OnInitialise();
- PluginRegistry::RegisterPlugin(plugin);
- }
- EventId RegisterEventType(const String& type, bool interruptible, bool bubbles, DefaultActionPhase default_action_phase)
- {
- return EventSpecificationInterface::InsertOrReplaceCustom(type, interruptible, bubbles, default_action_phase);
- }
- // Forces all compiled geometry handles generated by libRocket to be released.
- void ReleaseCompiledGeometries()
- {
- GeometryDatabase::ReleaseGeometries();
- }
- // Forces all texture handles loaded and generated by libRocket to be released.
- void ReleaseTextures()
- {
- TextureDatabase::ReleaseTextures();
- }
- }
- }
|