Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CAO: Add Colored Text Sprite #8623

Conversation

EvidenceBKidscode
Copy link
Contributor

@EvidenceBKidscode EvidenceBKidscode commented Jun 24, 2019

This PR offered by Kidscode allows to create entity sprites with native colored text.

Demo: https://www.youtube.com/watch?v=to2BMSdGwlo

Documentation

Click to expand

Declare a text sprite entity

Sample

initial_properties = {
	visual = "text_sprite",
	visual_size = {x = 1.0, y = 1.0},
	mesh = "{orange}{1.5}K{1}idscode rocks\n{#0FF/#00F}Érîthréà\n{#ABCDEF/#456789}Eûphôriâ\n\nÉqt{0.5}Éqt{1.2}Éqt\n{orange/red}\\\\\\{\\^\\}^0.1;0.2;0.0;0.0;0.0;1.0;0.22",
	colors = { "#F080F0FF", "#F01020FF", "#80808080", "#40404080" },
},

...
	
obj:set_sprite_text(""\\\\\\{\\^\\}\n\n{orange}Kidscode\n{#0FF/#00F}Érîthréà\n{#ABCDEF/#456789}Eûphôriâ");

Parameters

  • visual_size: X scale, Y scale
  • mesh: text, border size, X padding, Y padding, X offset, Y offset, spacing, base line offset
  • colors: text top color, text bottom color, background color, border color

The text separator is the circumflex.

The value separator is the semicolon.

Values

  • border size: tells the size of the border (in character height unit)
  • X/Y padding: tells how much padding is added between the text and the border (in character size unit)
  • X/Y offset: tells how much offset is added to the text position inside the frame (in character size unit)
  • spacing: tells how much space is added between contiguous characters (1.0 by default)
  • base line offset: tells where the base line is located (from 0.0 to 1.0)

The actual text frame width is computed from the frame height and longest text line width.

The text can contains named or hexadecimal colors between accolades.
Hexadecimal colors start by a hash mark, and can contain 3 or 6 hexadecimal digits.
Both the top and bottom colors can be provided, by separating them with a slash character.

The text can also contain scales between accolades.
The default scale is 1.0.

Special characters can be escaped by preceding them with a backslash character.

@kilbith kilbith force-pushed the backport-text-sprite branch from f3d6b09 to 85dfb37 Compare June 24, 2019 14:57
@SmallJoker
Copy link
Member

So the current trend is to modify & migrate all Irrlicht sources to our code base?
Don't get me wrong - entities with text that do not require a bitmap font (and a mod to "render") is a great idea and looks amazing. How much of the Irrlicht code was changed to achieve this?

@SmallJoker SmallJoker added @ Client / Audiovisuals Feature ✨ PRs that add or enhance a feature labels Jun 24, 2019
@Desour
Copy link
Member

Desour commented Jun 24, 2019

Maybe related: #1367

@kilbith kilbith force-pushed the backport-text-sprite branch from 85dfb37 to 449e105 Compare June 24, 2019 21:49
@kilbith kilbith force-pushed the backport-text-sprite branch from 449e105 to 288fad9 Compare August 18, 2019 13:10
bool parseColorString(const std::string &value, video::SColor &color, bool quiet,
unsigned char default_alpha = 0xff);

struct ColorContainer {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here. Struct declaration is OK in the header, but the definition should really be in string.cpp.

@SmallJoker
Copy link
Member

What kind of color/size encoding is this? It doesn't look like anything known in Minetest.
There are text colorizing functions for both - foreground and background (latter kinda broken). Also HTML tags are now a thing. Why did you decide on this brackets-value notation?

@rubenwardy rubenwardy closed this Mar 6, 2020
@celeron55
Copy link
Member

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
@ Client / Audiovisuals Feature ✨ PRs that add or enhance a feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants