Ankush's Garage
A collection of stuff made by Ankush Roy
Loading...
Searching...
No Matches
BaseProject.h
Go to the documentation of this file.
1#ifndef INCLUDE_COMMON_BASEPROJECT_H_
2#define INCLUDE_COMMON_BASEPROJECT_H_
3
4#include "Core/Common/pch.h"
5
6namespace Common
7{
8
16{
17 public:
18 virtual ~BaseProject() = default;
19
20 virtual bool Init() = 0;
21 virtual bool Update() = 0;
22 virtual bool Draw() = 0;
23 virtual void Quit() = 0;
24
25 [[nodiscard]] virtual const std::string &getName() = 0;
26 static bool hasUI;
27};
28
30{
31 public:
32 virtual ~ImGuiUI() = default;
33 virtual bool DrawUI() = 0;
34};
35
37{
38 public:
40 static std::vector<std::unique_ptr<BaseProject>> getProjects();
41
44 static void registerAllProjects(); // defined in RegisgerProjects.cpp
45
47 static void registerProject(std::unique_ptr<BaseProject> project);
48
49 private:
50 static std::vector<std::unique_ptr<BaseProject>>
52};
53
54} // namespace Common
55
56extern std::vector<std::unique_ptr<Common::BaseProject>> Projects;
57
58#endif // INCLUDE_COMMON_BASEPROJECT_H_
std::vector< std::unique_ptr< Common::BaseProject > > Projects
Definition BaseProject.cpp:3
Structure representing an project application instance.
Definition BaseProject.h:16
virtual const std::string & getName()=0
virtual void Quit()=0
virtual bool Init()=0
virtual bool Draw()=0
virtual bool Update()=0
static bool hasUI
Definition BaseProject.h:26
virtual ~BaseProject()=default
Definition BaseProject.h:30
virtual ~ImGuiUI()=default
virtual bool DrawUI()=0
Definition BaseProject.h:37
static std::vector< std::unique_ptr< BaseProject > > getProjects()
returns the projects vector
Definition BaseProject.cpp:12
static void registerProject(std::unique_ptr< BaseProject > project)
register a project to the vector, should be called before calling getProjects()
Definition BaseProject.cpp:17
static std::vector< std::unique_ptr< BaseProject > > projects
A vector that holds the projects.
Definition BaseProject.h:51
static void registerAllProjects()
registers all the projects to the vector, should be called before calling getProjects()
Definition RegisterProjects.cpp:9
Definition Common.cpp:6