2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _CCONSOLEOUTPUTWINDOW
|
|
|
|
#define _CCONSOLEOUTPUTWINDOW
|
2022-10-01 06:19:09 +00:00
|
|
|
|
|
|
|
#include "MetroidPrime/CIOWin.hpp"
|
|
|
|
|
2022-10-09 06:55:24 +00:00
|
|
|
#include "Kyoto/Text/CFont.hpp"
|
|
|
|
|
|
|
|
#include <rstl/vector.hpp>
|
|
|
|
|
2022-10-01 06:19:09 +00:00
|
|
|
class CConsoleOutputWindow : public CIOWin {
|
2022-10-09 06:55:24 +00:00
|
|
|
static CConsoleOutputWindow* mInstance;
|
2022-10-01 06:19:09 +00:00
|
|
|
public:
|
2022-10-09 05:37:23 +00:00
|
|
|
CConsoleOutputWindow(int, float, float);
|
2022-10-01 06:19:09 +00:00
|
|
|
|
|
|
|
~CConsoleOutputWindow() override;
|
|
|
|
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) override;
|
2022-10-09 06:55:24 +00:00
|
|
|
void Update(float);
|
|
|
|
void Draw() const;
|
|
|
|
private:
|
|
|
|
CFont mFont;
|
|
|
|
float mUnk;
|
|
|
|
rstl::vector<rstl::string> mText;
|
|
|
|
rstl::vector<float> mUnkFloats;
|
|
|
|
int x40_;
|
|
|
|
int x44_;
|
|
|
|
int x48_;
|
2022-10-01 06:19:09 +00:00
|
|
|
};
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _CCONSOLEOUTPUTWINDOW
|