PolycodeToolLauncher.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. Copyright (C) 2012 by Ivan Safrin
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  17. THE SOFTWARE.
  18. */
  19. #pragma once
  20. #include "PolycodeProject.h"
  21. #include "PolycodeConsole.h"
  22. class PolycodeRunner : public Threaded {
  23. public:
  24. PolycodeRunner(String polyappPath);
  25. void runThread();
  26. String polyappPath;
  27. };
  28. class GenericRunner : public Threaded {
  29. public:
  30. GenericRunner(String app, String file, String inFolder);
  31. void runThread();
  32. String app;
  33. String file;
  34. String inFolder;
  35. };
  36. class PolycodeToolLauncher {
  37. public:
  38. PolycodeToolLauncher();
  39. ~PolycodeToolLauncher();
  40. static void openExternalEditor(String app, String file, String inFolder);
  41. static String generateTempPath(PolycodeProject *project);
  42. static void buildProject(PolycodeProject *project, String destinationPath, bool compileScripts);
  43. static String importAssets(String sourceFile, String inFolder, bool addMeshes, String prefix, bool swapZY, bool generateTangents, bool listOnly,bool writeNormals, bool writeTangents, bool writeColors, bool writeBoneWeights, bool writeUVs, bool writeSecondaryUVs);
  44. static void runPolyapp(String polyappPath);
  45. };