mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-19 22:43:32 +00:00
132 lines
3.6 KiB
C++
Executable File
132 lines
3.6 KiB
C++
Executable File
#ifndef NET_MINECRAFT_CLIENT_GUI__Gui_H__
|
|
#define NET_MINECRAFT_CLIENT_GUI__Gui_H__
|
|
|
|
//package net.minecraft.client.gui;
|
|
|
|
#include "GuiComponent.h"
|
|
#include "Font.h"
|
|
#include "../player/input/touchscreen/TouchAreaModel.h"
|
|
#include "../renderer/RenderChunk.h"
|
|
#include "../../util/Random.h"
|
|
#include "../IConfigListener.h"
|
|
|
|
class Minecraft;
|
|
class ItemInstance;
|
|
class Textures;
|
|
class Tesselator;
|
|
struct IntRectangle;
|
|
|
|
struct GuiMessage
|
|
{
|
|
std::string message;
|
|
int ticks;
|
|
};
|
|
|
|
typedef std::vector<GuiMessage> GuiMessageList;
|
|
|
|
class Gui: public GuiComponent, IConfigListener
|
|
{
|
|
public:
|
|
Gui(Minecraft* minecraft);
|
|
~Gui();
|
|
|
|
int getSlotIdAt(int x, int y);
|
|
void flashSlot(int slotId);
|
|
bool isInside(int x, int y);
|
|
RectangleArea getRectangleArea(int extendSide);
|
|
void getSlotPos(int slot, int& posX, int& posY);
|
|
int getNumSlots();
|
|
|
|
void handleClick(int button, int x, int y);
|
|
void handleKeyPressed( int key );
|
|
void scrollChat(int delta);
|
|
|
|
void tick();
|
|
void render(float a, bool mouseFree, int xMouse, int yMouse);
|
|
|
|
void renderToolBar( float a, int ySlot, const int screenWidth );
|
|
|
|
void renderChatMessages( const int screenHeight, unsigned int max, bool isChatting, Font* font );
|
|
|
|
// draw a string containing simple [color]...[/color] tags; color names are matched
|
|
// case-insensitively and default to white. alpha is applied to each segment.
|
|
// draw tagged string (ignores simple [color]…[/color] tags)
|
|
static void drawColoredString(Font* font, const std::string& text, float x, float y, int alpha);
|
|
static float getColoredWidth(Font* font, const std::string& text);
|
|
|
|
void renderOnSelectItemNameText( const int screenWidth, Font* font, int ySlot );
|
|
|
|
void renderSleepAnimation( const int screenWidth, const int screenHeight );
|
|
|
|
void renderBubbles();
|
|
void renderHearts();
|
|
void renderDebugInfo();
|
|
void renderPlayerList(Font* font, int screenWidth, int screenHeight);
|
|
|
|
void renderProgressIndicator( const bool isTouchInterface, const int screenWidth, const int screenHeight, float a );
|
|
|
|
void addMessage(const std::string& string);
|
|
void postError(int errCode);
|
|
|
|
void onGraphicsReset();
|
|
void inventoryUpdated();
|
|
|
|
void setNowPlaying(const std::string& string);
|
|
void displayClientMessage(const std::string& messageId);
|
|
void renderSlotText(const ItemInstance* item, float x, float y, bool hasFinite, bool shadow);
|
|
void texturesLoaded( Textures* textures );
|
|
|
|
void onConfigChanged(const Config& config);
|
|
void onLevelGenerated();
|
|
|
|
void setScissorRect(const IntRectangle& rect);
|
|
|
|
static float floorAlignToScreenPixel(float);
|
|
static int itemCountItoa(char* buf, int count);
|
|
private:
|
|
void renderVignette(float br, int w, int h);
|
|
void renderSlot(int slot, int x, int y, float a);
|
|
void tickItemDrop();
|
|
float cubeSmoothStep(float percentage, float min, float max);
|
|
public:
|
|
float progress;
|
|
std::string selectedName;
|
|
static float InvGuiScale;
|
|
static float GuiScale;
|
|
|
|
private:
|
|
int MAX_MESSAGE_WIDTH;
|
|
//ItemRenderer itemRenderer;
|
|
GuiMessageList guiMessages;
|
|
int chatScrollOffset;
|
|
Random random;
|
|
|
|
Minecraft* minecraft;
|
|
int tickCount;
|
|
float itemNameOverlayTime;
|
|
std::string overlayMessageString;
|
|
int overlayMessageTime;
|
|
bool animateOverlayMessageColor;
|
|
|
|
float tbr;
|
|
|
|
RenderChunk _inventoryRc;
|
|
bool _inventoryNeedsUpdate;
|
|
|
|
int _flashSlotId;
|
|
float _flashSlotStartTime;
|
|
|
|
Font* _slotFont;
|
|
int _numSlots;
|
|
|
|
RenderChunk rcFeedbackOuter;
|
|
RenderChunk rcFeedbackInner;
|
|
|
|
// For dropping
|
|
static const float DropTicks;
|
|
float _currentDropTicks;
|
|
int _currentDropSlot;
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_CLIENT_GUI__Gui_H__*/
|