mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
8c61a6fe60
* add level: links and mod: links * fix errors * fix errors 2 * fix errors 3 (hopefully) * fix errors 4 (i think fixed?) * fix 5 PLEASE * fix mod links and make level links actually work * PLEASE JUST WORK!!!!!!!!!!!!! * change it to this * oops forgot a ) * PLEASE HORRIBLE CODE JUST WORK! * AHHHHHHHHHHHHHHH fix * just work * I DO HORRIBLE CODE * Update ModInfoPopup.cpp --------- Co-authored-by: alk <45172705+altalk23@users.noreply.github.com>
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include "ScrollLayer.hpp"
|
|
#include "TextRenderer.hpp"
|
|
|
|
#include <Geode/binding/FLAlertLayerProtocol.hpp>
|
|
|
|
struct MDParser;
|
|
class CCScrollLayerExt;
|
|
|
|
namespace geode {
|
|
/**
|
|
* TextArea for static markdown content. Supports the
|
|
* following features:
|
|
* - Links
|
|
* - Images (sprites & spritesheets)
|
|
* - Headings
|
|
* - Paragraphs
|
|
* - Code blocks
|
|
* - Code spans
|
|
* - TextArea color tags (<cr>, <cy>, etc.)
|
|
* - Strikethrough
|
|
* - Underline
|
|
* - Bold & italic
|
|
* - Horizontal rules
|
|
* - Lists
|
|
*
|
|
* Note that links also have some special protocols.
|
|
* Use `user:<accountID>` to link to a GD
|
|
* account; `level:<id>` to link to a GD level and
|
|
* `mod:<id>` to link to another Geode mod.
|
|
*/
|
|
class GEODE_DLL MDTextArea :
|
|
public cocos2d::CCLayer,
|
|
public cocos2d::CCLabelProtocol,
|
|
public FLAlertLayerProtocol {
|
|
protected:
|
|
std::string m_text;
|
|
cocos2d::CCSize m_size;
|
|
cocos2d::extension::CCScale9Sprite* m_bgSprite = nullptr;
|
|
cocos2d::CCMenu* m_content = nullptr;
|
|
CCScrollLayerExt* m_scrollLayer = nullptr;
|
|
TextRenderer* m_renderer = nullptr;
|
|
|
|
bool init(std::string const& str, cocos2d::CCSize const& size);
|
|
|
|
virtual ~MDTextArea();
|
|
|
|
void onLink(CCObject*);
|
|
void onGDProfile(CCObject*);
|
|
void onGDLevel(CCObject*);
|
|
void onGeodeMod(CCObject*);
|
|
void FLAlert_Clicked(FLAlertLayer*, bool btn) override;
|
|
|
|
friend struct ::MDParser;
|
|
|
|
public:
|
|
/**
|
|
* Create a markdown text area. See class
|
|
* documentation for details on supported
|
|
* features & notes.
|
|
* @param str String to render
|
|
* @param size Size of the textarea
|
|
*/
|
|
static MDTextArea* create(std::string const& str, cocos2d::CCSize const& size);
|
|
|
|
/**
|
|
* Update the label's content; call
|
|
* sparingly as rendering may be slow
|
|
*/
|
|
void updateLabel();
|
|
|
|
void setString(char const* text) override;
|
|
char const* getString() override;
|
|
|
|
CCScrollLayerExt* getScrollLayer() const;
|
|
};
|
|
}
|