(Solved) Formatting Tags reference

For help with general CEGUI usage:
- Questions about the usage of CEGUI and its features, if not explained in the documentation.
- Problems with the CMAKE configuration or problems occuring during the build process/compilation.
- Errors or unexpected behaviour.

Moderators: CEGUI MVP, CEGUI Team

mboeni
Not too shy to talk
Not too shy to talk
Posts: 38
Joined: Wed Sep 08, 2010 16:02

(Solved) Formatting Tags reference

Postby mboeni » Wed Sep 15, 2010 15:38

Hi all

Can anyone point me towards a formatting tags reference or tutorial? Haven't found much myself yet :o

Cheers,
Michael
Last edited by mboeni on Fri Sep 24, 2010 15:56, edited 1 time in total.

IR3uL
Not too shy to talk
Not too shy to talk
Posts: 45
Joined: Wed Aug 25, 2010 00:32
Location: Buenos Aires - Argentina

Re: Formatting Tags reference

Postby IR3uL » Wed Sep 15, 2010 15:40

What do you mean with formatting tags?

mboeni
Not too shy to talk
Not too shy to talk
Posts: 38
Joined: Wed Sep 08, 2010 16:02

Re: Formatting Tags reference

Postby mboeni » Wed Sep 15, 2010 15:47

CEGUI offers text formatting. Check out this thread:
http://www.cegui.org.uk/phpBB2/viewtopic.php?f=10&t=4855&start=0

I just have not found a reference or tut for it :)

IR3uL
Not too shy to talk
Not too shy to talk
Posts: 45
Joined: Wed Aug 25, 2010 00:32
Location: Buenos Aires - Argentina

Re: Formatting Tags reference

Postby IR3uL » Wed Sep 15, 2010 16:38

The thread you pointed explains how to use it (a tutorial? =D). As for reference, maybe this helps http://www.cegui.org.uk/docs/current/classCEGUI_1_1BasicRenderedStringParser.html

I know is not much but a list of properties is a start. You can have a look at CEGUIBasicRenderedStringParser.h/cpp too. I made a few quick tests and it seems simple to use.

Also, if you have time, you can arrange a wiki article about this ;)

mboeni
Not too shy to talk
Not too shy to talk
Posts: 38
Joined: Wed Sep 08, 2010 16:02

Re: Formatting Tags reference

Postby mboeni » Wed Sep 15, 2010 17:12

The "how" is not really an issue ;) I'm more into the '"what's possible". The class reference is certainly a start, thanks!
And yes, if i find enough info I can create a wiki article ;)

IR3uL
Not too shy to talk
Not too shy to talk
Posts: 45
Joined: Wed Aug 25, 2010 00:32
Location: Buenos Aires - Argentina

Re: Formatting Tags reference

Postby IR3uL » Wed Sep 15, 2010 17:25

Check this video

It's a bit outdated (+1 year i think) but it's a nice demo of the string formatting caps. Some trial & error should do the rest.

Have fun! :D

mboeni
Not too shy to talk
Not too shy to talk
Posts: 38
Joined: Wed Sep 08, 2010 16:02

Re: Formatting Tags reference

Postby mboeni » Fri Sep 24, 2010 13:56

Hi mate!

As promised, I have written a tutorial about tags ;)

Here you go:

http://www.cegui.org.uk/wiki/index.php/Formatting_Tags_in_CEGUI

Enjoy! Feedback welcome!

Cheers,
Michael

User avatar
Kulik
CEGUI Team
Posts: 1382
Joined: Mon Jul 26, 2010 18:47
Location: Czech Republic
Contact:

Re: Formatting Tags reference

Postby Kulik » Fri Sep 24, 2010 14:03

Nicely written! You seem to have some doc writing skills :-) This is what CEGUI lacks IMO. It has docs aimed at advanced developers but no beginner material taking people step by step over concepts.

mboeni
Not too shy to talk
Not too shy to talk
Posts: 38
Joined: Wed Sep 08, 2010 16:02

Re: Formatting Tags reference

Postby mboeni » Fri Sep 24, 2010 14:09

Thanks :) Thats why I wrote it. Im still a (bloody) CEGUI newbie but I'm catching on ;) And its definitely not my last tutorial.

IR3uL
Not too shy to talk
Not too shy to talk
Posts: 45
Joined: Wed Aug 25, 2010 00:32
Location: Buenos Aires - Argentina

Re: Formatting Tags reference

Postby IR3uL » Fri Sep 24, 2010 15:54

Yay! nice work man!

Jamarr
CEGUI MVP
CEGUI MVP
Posts: 812
Joined: Tue Jun 03, 2008 23:59
Location: USA

Re: (Solved) Formatting Tags reference

Postby Jamarr » Fri Sep 24, 2010 16:49

Looks good so far. This should definitely help people understand how to use these tags. I briefly skimmed over it and noticed a few things:

  • You use colour and color - stick to colour since that is what CEGUI uses
  • You do not "need to have" font files; fonts can be created dynamically in code via the CEGUI::FontManager - using the .font files is good for a beginner tutorial, but don't make them sound like a requirement; perhaps change "Font formatting is a bit more involved as you need to have the actual fonts and the ‘font’ XML files defined for each style." > "Font formatting is a bit more involved. The simple approach is to define fonts in ‘font’ XML files for each style."
  • Your first example of embedding an image seems to be missing an apostrophe: [image=set:<imageset> image:<image>']
  • Under Image Size, the second sentence starts "The sized" s/b "The sizes"
  • Under Vertical Alignment, the word Tag is capitalized when it does not need to be
  • embed the defined window...into you string > into the string

Filling in those screenshots will be a nice touch; I wonder if embedding the YouTube video would be useful?
If somebody helps you by replying to your thread, upvote him/her as a thanks! Make sure to include your CEGUI.log and everything you tried when posting! And remember that we are not magicians!

mboeni
Not too shy to talk
Not too shy to talk
Posts: 38
Joined: Wed Sep 08, 2010 16:02

Re: (Solved) Formatting Tags reference

Postby mboeni » Fri Sep 24, 2010 17:24

You use colour and color - stick to colour since that is what CEGUI uses

--> Done

You do not "need to have" font files; fonts can be created dynamically in code via the CEGUI::FontManager - using the .font files is good for a beginner tutorial, but don't make them sound like a requirement; perhaps change "Font formatting is a bit more involved as you need to have the actual fonts and the ‘font’ XML files defined for each style." > "Font formatting is a bit more involved. The simple approach is to define fonts in ‘font’ XML files for each style."

--> Feel free to add this to the tutorial.

Your first example of embedding an image seems to be missing an apostrophe: [image=set:<imageset> image:<image>']

--> Done

Under Image Size, the second sentence starts "The sized" s/b "The sizes"

--> Done

Code: Select all

Under Vertical Alignment, the word Tag is capitalized when it does not need to be

--> Done

embed the defined window...into you string > into the string

--> Done

User avatar
CrazyEddie
CEGUI Project Lead
Posts: 6760
Joined: Wed Jan 12, 2005 12:06
Location: England
Contact:

Re: (Solved) Formatting Tags reference

Postby CrazyEddie » Mon Sep 27, 2010 13:06

Thanks for your efforts here; I like it :D

CE


Return to “Help”

Who is online

Users browsing this forum: No registered users and 10 guests