mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Move wordwrapping functions and len to Font.cpp/font:: namespace
The following functions were moved directly: - next_wrap - next_wrap_s - string_wordwrap - string_wordwrap_balanced - string_unwordwrap These ones will probably still need get a flags argument, except for string_unwordwrap (since they need to know what font we're talking about. The implementation of graphics.len has also been moved to Font.cpp, but graphics.len still exists for now and is deprecated.
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
1d8494db8d
commit
159c70dade
@@ -104,7 +104,11 @@ void load_custom(void);
|
||||
void unload_custom(void);
|
||||
void destroy(void);
|
||||
|
||||
int get_advance(const Font* f, uint32_t codepoint); // TODO de-api
|
||||
std::string string_wordwrap(const std::string& s, int maxwidth, short *lines = NULL);
|
||||
std::string string_wordwrap_balanced(const std::string& s, int maxwidth);
|
||||
std::string string_unwordwrap(const std::string& s);
|
||||
|
||||
int len(uint32_t flags, const std::string& t);
|
||||
|
||||
void print(
|
||||
uint32_t flags,
|
||||
|
||||
Reference in New Issue
Block a user