├── .gitignore ├── CMakeLists.txt ├── doc ├── build │ ├── Doxyfile │ ├── Doxygen.hpp │ ├── doxygen.css │ ├── footer.htm │ └── header.htm └── html │ └── logo.png ├── example ├── build │ ├── mingw │ │ ├── aztec-warfare.cbp │ │ ├── elite-warriors-plugin.cbp │ │ └── example.workspace │ └── vc2010 │ │ ├── aztec-warfare.filters │ │ ├── aztec-warfare.vcxproj │ │ ├── aztec-warfare.vcxproj.user │ │ ├── elite-warriors-plugin.filters │ │ ├── elite-warriors-plugin.vcxproj │ │ ├── elite-warriors-plugin.vcxproj.user │ │ ├── example.sln │ │ └── example.suo └── src │ ├── host │ ├── Main.cpp │ └── SimpleWarrior.hpp │ ├── interface │ ├── Warrior.cpp │ └── Warrior.hpp │ └── plugin │ ├── Connector.cpp │ ├── Eagle.hpp │ └── Jaguar.hpp ├── include └── Pluma │ ├── Config.hpp │ ├── Connector.hpp │ ├── Host.hpp │ ├── PluginManager.hpp │ ├── Pluma.hpp │ ├── Pluma.inl │ └── Provider.hpp ├── readme ├── src └── Pluma │ ├── DLibrary.cpp │ ├── DLibrary.hpp │ ├── Dir.cpp │ ├── Dir.hpp │ ├── Host.cpp │ ├── PluginManager.cpp │ ├── Provider.cpp │ └── uce-dirent.h └── test /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /doc/build/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/doc/build/Doxyfile -------------------------------------------------------------------------------- /doc/build/Doxygen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/doc/build/Doxygen.hpp -------------------------------------------------------------------------------- /doc/build/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/doc/build/doxygen.css -------------------------------------------------------------------------------- /doc/build/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/doc/build/footer.htm -------------------------------------------------------------------------------- /doc/build/header.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/doc/build/header.htm -------------------------------------------------------------------------------- /doc/html/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/doc/html/logo.png -------------------------------------------------------------------------------- /example/build/mingw/aztec-warfare.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/build/mingw/aztec-warfare.cbp -------------------------------------------------------------------------------- /example/build/mingw/elite-warriors-plugin.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/build/mingw/elite-warriors-plugin.cbp -------------------------------------------------------------------------------- /example/build/mingw/example.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/build/mingw/example.workspace -------------------------------------------------------------------------------- /example/build/vc2010/aztec-warfare.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/build/vc2010/aztec-warfare.filters -------------------------------------------------------------------------------- /example/build/vc2010/aztec-warfare.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/build/vc2010/aztec-warfare.vcxproj -------------------------------------------------------------------------------- /example/build/vc2010/aztec-warfare.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/build/vc2010/aztec-warfare.vcxproj.user -------------------------------------------------------------------------------- /example/build/vc2010/elite-warriors-plugin.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/build/vc2010/elite-warriors-plugin.filters -------------------------------------------------------------------------------- /example/build/vc2010/elite-warriors-plugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/build/vc2010/elite-warriors-plugin.vcxproj -------------------------------------------------------------------------------- /example/build/vc2010/elite-warriors-plugin.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/build/vc2010/elite-warriors-plugin.vcxproj.user -------------------------------------------------------------------------------- /example/build/vc2010/example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/build/vc2010/example.sln -------------------------------------------------------------------------------- /example/build/vc2010/example.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/build/vc2010/example.suo -------------------------------------------------------------------------------- /example/src/host/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/src/host/Main.cpp -------------------------------------------------------------------------------- /example/src/host/SimpleWarrior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/src/host/SimpleWarrior.hpp -------------------------------------------------------------------------------- /example/src/interface/Warrior.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/src/interface/Warrior.cpp -------------------------------------------------------------------------------- /example/src/interface/Warrior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/src/interface/Warrior.hpp -------------------------------------------------------------------------------- /example/src/plugin/Connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/src/plugin/Connector.cpp -------------------------------------------------------------------------------- /example/src/plugin/Eagle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/src/plugin/Eagle.hpp -------------------------------------------------------------------------------- /example/src/plugin/Jaguar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/example/src/plugin/Jaguar.hpp -------------------------------------------------------------------------------- /include/Pluma/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/include/Pluma/Config.hpp -------------------------------------------------------------------------------- /include/Pluma/Connector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/include/Pluma/Connector.hpp -------------------------------------------------------------------------------- /include/Pluma/Host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/include/Pluma/Host.hpp -------------------------------------------------------------------------------- /include/Pluma/PluginManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/include/Pluma/PluginManager.hpp -------------------------------------------------------------------------------- /include/Pluma/Pluma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/include/Pluma/Pluma.hpp -------------------------------------------------------------------------------- /include/Pluma/Pluma.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/include/Pluma/Pluma.inl -------------------------------------------------------------------------------- /include/Pluma/Provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/include/Pluma/Provider.hpp -------------------------------------------------------------------------------- /readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/readme -------------------------------------------------------------------------------- /src/Pluma/DLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/src/Pluma/DLibrary.cpp -------------------------------------------------------------------------------- /src/Pluma/DLibrary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/src/Pluma/DLibrary.hpp -------------------------------------------------------------------------------- /src/Pluma/Dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/src/Pluma/Dir.cpp -------------------------------------------------------------------------------- /src/Pluma/Dir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/src/Pluma/Dir.hpp -------------------------------------------------------------------------------- /src/Pluma/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/src/Pluma/Host.cpp -------------------------------------------------------------------------------- /src/Pluma/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/src/Pluma/PluginManager.cpp -------------------------------------------------------------------------------- /src/Pluma/Provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/src/Pluma/Provider.cpp -------------------------------------------------------------------------------- /src/Pluma/uce-dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/src/Pluma/uce-dirent.h -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aelzenaar/pluma/HEAD/test --------------------------------------------------------------------------------