2022-08-01 11:18:03 -04:00
|
|
|
#pragma once
|
|
|
|
|
2022-08-02 06:17:26 -04:00
|
|
|
#include <Geode/Bindings.hpp>
|
2022-08-01 11:18:03 -04:00
|
|
|
|
|
|
|
namespace geode {
|
|
|
|
enum class CircleBaseSize {
|
|
|
|
Tiny = 0, // Equivalent to the tiny delete button
|
|
|
|
Small = 1, // Equivalent to most circular buttons in the editor
|
|
|
|
Small2 = 2, // Equivalent to the trash button in the editor
|
|
|
|
Medium = 3, // Equivalent to most buttons
|
|
|
|
Medium2 = 4, // Equivalent to the bottom buttons in MenuLayer
|
|
|
|
Big = 5, // Equivalent to the New button
|
|
|
|
Big2 = 6, // Equivalent to the Account button
|
|
|
|
Large = 7, // Equivalent to the big Play Button
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class CrossBaseSize {
|
|
|
|
Small = 0,
|
|
|
|
Huge = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class CircleBaseColor {
|
|
|
|
Green = 0,
|
|
|
|
Pink = 1,
|
|
|
|
Gray = 2,
|
|
|
|
Blue = 3,
|
|
|
|
Cyan = 4,
|
|
|
|
Geode = 5,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class AccountBaseColor {
|
|
|
|
Blue = 0,
|
|
|
|
Gray = 1,
|
|
|
|
Purple = 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class IconSelectBaseColor {
|
|
|
|
Gray = 0,
|
|
|
|
Selected = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class EditorBaseColor {
|
|
|
|
LightBlue = 0,
|
|
|
|
Green = 1,
|
|
|
|
Orange = 2,
|
|
|
|
DarkGray = 3,
|
|
|
|
Gray = 4,
|
|
|
|
Pink = 5,
|
|
|
|
Teal = 6,
|
|
|
|
Aqua = 7,
|
|
|
|
Cyan = 8,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class TabBaseColor {
|
|
|
|
Unselected = 0,
|
|
|
|
Selected = 1,
|
|
|
|
UnselectedDark = 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class BaseType {
|
|
|
|
Circle = 0,
|
|
|
|
Cross = 1,
|
|
|
|
Account = 2,
|
|
|
|
IconSelect = 3,
|
|
|
|
GlobalThing = 4,
|
|
|
|
Editor = 5,
|
|
|
|
Tab = 6,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a GD button sprite where there's
|
|
|
|
* an icon sprite on top another default sprite.
|
|
|
|
* You know, it has a base. It's based.
|
|
|
|
* lmao trademark lizbith
|
|
|
|
*/
|
|
|
|
class GEODE_DLL BasedButtonSprite : public cocos2d::CCSprite {
|
|
|
|
protected:
|
|
|
|
int m_type;
|
|
|
|
int m_size;
|
|
|
|
int m_color;
|
|
|
|
cocos2d::CCNode* m_onTop = nullptr;
|
|
|
|
|
|
|
|
bool init(cocos2d::CCNode* ontop, int type, int size, int color);
|
|
|
|
bool initWithSprite(const char* sprName, float sprScale, int type, int size, int color);
|
|
|
|
bool initWithSpriteFrameName(const char* sprName, float sprScale, int type, int size, int color);
|
|
|
|
|
|
|
|
cocos2d::CCPoint getTopOffset() const;
|
|
|
|
|
|
|
|
virtual ~BasedButtonSprite();
|
|
|
|
|
|
|
|
public:
|
|
|
|
static BasedButtonSprite* create(cocos2d::CCNode* ontop, int type, int size, int color);
|
|
|
|
};
|
|
|
|
|
|
|
|
class GEODE_DLL CircleButtonSprite : public BasedButtonSprite {
|
|
|
|
public:
|
|
|
|
static CircleButtonSprite* create(
|
|
|
|
cocos2d::CCNode* top,
|
|
|
|
CircleBaseColor color = CircleBaseColor::Green,
|
|
|
|
CircleBaseSize size = CircleBaseSize::Medium
|
|
|
|
);
|
|
|
|
static CircleButtonSprite* createWithSprite(
|
|
|
|
const char* sprName,
|
|
|
|
float sprScale = 1.f,
|
|
|
|
CircleBaseColor color = CircleBaseColor::Green,
|
|
|
|
CircleBaseSize size = CircleBaseSize::Medium
|
|
|
|
);
|
|
|
|
static CircleButtonSprite* createWithSpriteFrameName(
|
|
|
|
const char* sprName,
|
|
|
|
float sprScale = 1.f,
|
|
|
|
CircleBaseColor color = CircleBaseColor::Green,
|
|
|
|
CircleBaseSize size = CircleBaseSize::Medium
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
class GEODE_DLL EditorButtonSprite : public BasedButtonSprite {
|
|
|
|
public:
|
|
|
|
static EditorButtonSprite* create(cocos2d::CCNode* top, EditorBaseColor color);
|
|
|
|
static EditorButtonSprite* createWithSprite(
|
|
|
|
const char* sprName,
|
|
|
|
float sprScale = 1.f,
|
|
|
|
EditorBaseColor color = EditorBaseColor::Green
|
|
|
|
);
|
|
|
|
static EditorButtonSprite* createWithSpriteFrameName(
|
|
|
|
const char* sprName,
|
|
|
|
float sprScale = 1.f,
|
|
|
|
EditorBaseColor color = EditorBaseColor::Green
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
class GEODE_DLL TabButtonSprite : public BasedButtonSprite {
|
|
|
|
public:
|
|
|
|
static TabButtonSprite* create(const char* text, TabBaseColor color);
|
|
|
|
};
|
|
|
|
}
|