TDME2 1.9.121
recreatevkcache-main.cpp
Go to the documentation of this file.
1#include <cstdlib>
2#include <string>
3
4#include <tdme/tdme.h>
13
23
24namespace tdme {
25namespace tools {
26namespace cli {
27
28/**
29 * Delete VK cache
30 * @author andreas.drewke
31 * @version $Id$
32 */
34 : public virtual Application
35{
36public:
37 /**
38 * Public constructor
39 */
41 }
42
43 /**
44 * Public denstructor
45 */
47 }
48
49 /**
50 * Main
51 * @param argc argument count
52 * @param argv argument values
53 */
54 inline static void main(int argc, char** argv) {
55 auto recreateVKCacheApplication = new RecreateVKCacheApplication();
56 recreateVKCacheApplication->run(argc, argv, "Recreate VK cache Application", nullptr, Application::WINDOW_HINT_INVISIBLE);
57 }
58
59 // overriden methods
60 void display() override {
61 Application::exit(0);
62 }
63
64 void dispose() override {
65 Engine::getInstance()->dispose();
66 }
67
68 void initialize() override {
69 Engine::getInstance()->initialize();
70 if (Engine::getInstance()->getGraphicsRendererType() != Renderer::RENDERERTYPE_VULKAN) {
71 Console::println("Engine has not been compiled with -DVULKAN, Vulkan shader cache can not get created. Exiting.");
72 Application::exit(0);
73 }
74 }
75
76 void reshape(int32_t width, int32_t height) override {
77 Engine::getInstance()->reshape(width, height);
78 }
79};
80
81};
82};
83};
84
85int main(int argc, char** argv)
86{
87 Console::println(string("recreatevkcache ") + Version::getVersion());
88 Console::println(Version::getCopyright());
89 Console::println();
90 Console::println("Deleting shader/vk folder");
91 try {
92 FileSystem::getInstance()->removePath("shader/vk", true);
93 } catch (Exception& exception) {
94 Console::println(string() + "An error occurred: " + exception.what());
95 }
96 try {
97 if (FileSystem::getInstance()->fileExists("shader/vk") == false) {
98 FileSystem::getInstance()->createPath("shader/vk");
99 }
100 } catch (Exception& exception) {
101 Console::println(string() + "An error occurred: " + exception.what());
102 }
103 Console::println("Creating shader/vk shader cache");
105 Console::println("Done");
106}
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
Engine main class.
Definition: Engine.h:122
File system singleton class.
Definition: FileSystem.h:14
static void main(int argc, char **argv)
Main.
void reshape(int32_t width, int32_t height) override
Console class.
Definition: Console.h:26
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19
Definition: fwd-tdme.h:4
int main(int argc, char **argv)