QGearsDataPlugin.cpp 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. -----------------------------------------------------------------------------
  3. The MIT License (MIT)
  4. Copyright (c) 2013-07-30 Tobias Peters <tobias.peters@kreativeffekt.at>
  5. Permission is hereby granted, free of charge, to any person obtaining a copy
  6. of this software and associated documentation files (the "Software"), to deal
  7. in the Software without restriction, including without limitation the rights
  8. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. copies of the Software, and to permit persons to whom the Software is
  10. furnished to do so, subject to the following conditions:
  11. The above copyright notice and this permission notice shall be included in
  12. all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. THE SOFTWARE.
  20. -----------------------------------------------------------------------------
  21. */
  22. #include "QGearsDataPlugin.h"
  23. #include "data/QGearsTexCodec.h"
  24. using Ogre::String;
  25. namespace QGears {
  26. const String DataPlugin::ms_plugin_name( "Plugin for Various FFVII File Formats" );
  27. //---------------------------------------------------------------------
  28. DataPlugin::DataPlugin()
  29. {
  30. }
  31. //---------------------------------------------------------------------
  32. const String& DataPlugin::getName() const
  33. {
  34. return ms_plugin_name;
  35. }
  36. //---------------------------------------------------------------------
  37. void DataPlugin::install()
  38. {
  39. //install called - create stuff here
  40. TexCodec::install();
  41. }
  42. //---------------------------------------------------------------------
  43. void DataPlugin::initialise()
  44. {
  45. //intialise called - register stuff here
  46. TexCodec::initialise();
  47. p_manager = new PFileManager();
  48. hrc_manager = new HRCFileManager();
  49. rsd_manager = new RSDFileManager();
  50. //palette_manager = new PaletteFileManager();
  51. //background_manager = new BackgroundFileManager();
  52. }
  53. //---------------------------------------------------------------------
  54. void DataPlugin::shutdown()
  55. {
  56. //shutdown called - unregister stuff here
  57. TexCodec::shutdown();
  58. delete p_manager;
  59. delete hrc_manager;
  60. delete rsd_manager;
  61. //delete palette_manager;
  62. //delete background_manager;
  63. }
  64. //---------------------------------------------------------------------
  65. void DataPlugin::uninstall()
  66. {
  67. //uninstall called - delete stuff here
  68. TexCodec::uninstall();
  69. }
  70. }