mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-20 06:53:30 +00:00
Fixes and enhancements from my MCPE repository. (https://github.com/mschiller890/mcpe64)
This commit is contained in:
34
src/client/gui/screens/ConsoleScreen.h
Normal file
34
src/client/gui/screens/ConsoleScreen.h
Normal file
@@ -0,0 +1,34 @@
|
||||
#ifndef NET_MINECRAFT_CLIENT_GUI_SCREENS__ConsoleScreen_H__
|
||||
#define NET_MINECRAFT_CLIENT_GUI_SCREENS__ConsoleScreen_H__
|
||||
|
||||
#include "../Screen.h"
|
||||
#include <string>
|
||||
|
||||
class ConsoleScreen: public Screen
|
||||
{
|
||||
typedef Screen super;
|
||||
public:
|
||||
ConsoleScreen();
|
||||
virtual ~ConsoleScreen() {}
|
||||
|
||||
void init();
|
||||
void render(int xm, int ym, float a);
|
||||
void tick();
|
||||
|
||||
virtual bool renderGameBehind() { return true; }
|
||||
virtual bool isInGameScreen() { return true; }
|
||||
virtual bool isPauseScreen() { return false; }
|
||||
|
||||
virtual void keyPressed(int eventKey);
|
||||
virtual void keyboardNewChar(char inputChar);
|
||||
virtual bool handleBackEvent(bool isDown);
|
||||
|
||||
private:
|
||||
void execute();
|
||||
std::string processCommand(const std::string& cmd);
|
||||
|
||||
std::string _input;
|
||||
int _cursorBlink; // tick counter for cursor blink
|
||||
};
|
||||
|
||||
#endif /*NET_MINECRAFT_CLIENT_GUI_SCREENS__ConsoleScreen_H__*/
|
||||
Reference in New Issue
Block a user