123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- import h2d.Drawable;
- import h2d.Flow;
- import h2d.Font;
- import h2d.Graphics;
- import h2d.Object;
- import h2d.Text.Align;
- // Use both text_res and res folders.
- //PARAM=-D resourcesPath=../../text_res;../../res
- class HtmlTextWidget extends Object
- {
- public var align: Align;
- public var textField: h2d.HtmlText;
- public var back: Graphics;
- public function new(parent:h2d.Scene, font: Font, str:String, align:h2d.Text.Align){
- super(parent);
- this.align = align;
- back = new Graphics(this);
- var tf = new h2d.HtmlText(font, this);
- tf.textColor = 0xffffff;
- tf.textAlign = align;
- tf.text = str;
- textField = tf;
- refreshBounds();
- }
- public function refreshBounds() {
- back.clear();
- var bounds = textField.getBounds(this);
- var size = textField.getSize();
- back.beginFill(0x5050ff, 0.5);
- back.drawRect(bounds.x, 0, size.width, size.height);
- back.endFill();
- back.lineStyle(1, 0x50ff50);
- back.drawRect(bounds.x, bounds.y, bounds.width, bounds.height);
- back.lineStyle(1, 0xff5050);
- back.moveTo(bounds.x, 0);
- back.lineTo(bounds.x + textField.textWidth, 0);
- back.moveTo(bounds.x, 0);
- back.lineTo(bounds.x, textField.textHeight);
- }
- public function setMaxWidth(w:Int) {
- textField.maxWidth = w;
- refreshBounds();
- }
- }
- class HtmlText extends hxd.App {
- var textWidgets:Array<HtmlTextWidget> = [];
- var resizeWidgets: Array<HtmlTextWidget> = [];
- override function init() {
- // Enable global scaling
- // s2d.scale(1.25);
- var font = hxd.res.DefaultFont.get();
- // var font = hxd.Res.customFont.toFont();
- h2d.HtmlText.defaultLoadFont = function( face : String ) : h2d.Font {
- if ( face == 'myFontFace' ) {
- var font = hxd.res.DefaultFont.get().clone();
- font.resizeTo(font.size * 2);
- return font;
- }
- return null;
- }
- h2d.HtmlText.defaultLoadImage = function( src : String ) : h2d.Tile {
- if ( src == "logo" ) {
- var t = hxd.Res.hxlogo.toTile();
- t.scaleToSize(16, 16);
- return t;
- }
- return null;
- }
- var multilineText = "This is a multiline <font color=\"#FF00FF\">text.<br/>Lorem</font> ipsum dolor";
- var singleText = "Hello simple text";
- var xpos = 0;
- var yoffset = 10.0;
- function createWidget(str:String, align:h2d.Text.Align) {
- var w = new HtmlTextWidget(s2d, font, str, align);
- w.x = xpos;
- w.y = yoffset;
- textWidgets.push(w);
- return w;
- }
- // Static single and multiline widgets
- xpos += 450;
- for (a in [Align.Left, Align.Center, Align.Right, Align.MultilineCenter, Align.MultilineRight]) {
- var w = createWidget("", a);
- var label = new h2d.HtmlText(font, w);
- label.text = Std.string(a);
- label.x = 5;
- label.alpha = 0.5;
- yoffset += w.textField.textHeight + 10;
- var w = createWidget(singleText, a);
- yoffset += w.textField.textHeight + 10;
- var w = createWidget(multilineText, a);
- yoffset += w.textField.textHeight + 10;
- }
- // Resized widgets
- xpos += 200;
- yoffset = 10;
- var longText = "Long text long text. Icons like this one <img src='logo'/> are flowed separately, but they should <font color=\"#FF00FF\">stick</font> to the text when they appear <img src='logo'/>before or after<img src='logo'/>. We support different <font face='myFontFace'>font faces</font>";
- for (a in [Align.Left, Align.Center, Align.Right, Align.MultilineCenter, Align.MultilineRight]) {
- var w = createWidget(longText, a);
- w.setMaxWidth(200);
- resizeWidgets.push(w);
- yoffset += 160;
- }
- // Flows
- function createText(parent:Object, str : String, align:Align) {
- var tf = new h2d.HtmlText(font, parent);
- tf.textColor = 0xffffff;
- tf.textAlign = align;
- tf.text = str;
- tf.maxWidth = 150;
- return tf;
- }
- function createFlow(parent:Object) {
- var flow = new Flow(parent);
- flow.debug = true;
- flow.horizontalSpacing = 5;
- flow.verticalSpacing = 5;
- flow.padding = 5;
- return flow;
- }
- yoffset = 0;
- var flow = createFlow(s2d);
- flow.verticalAlign = FlowAlign.Middle;
- createText(flow, singleText, Align.Left);
- createText(flow, multilineText, Align.Left);
- yoffset += flow.getBounds().height + 10;
- var flow = createFlow(s2d);
- flow.y = yoffset;
- flow.multiline = false;
- flow.verticalAlign = FlowAlign.Middle;
- createText(flow, multilineText, Align.Center);
- createText(flow, multilineText, Align.Right);
- yoffset += flow.getBounds().height + 10;
- var flow = createFlow(s2d);
- flow.y = yoffset;
- flow.verticalAlign = FlowAlign.Middle;
- flow.maxWidth = 150;
- createText(flow, singleText, Align.Left);
- createText(flow, multilineText, Align.Center);
- yoffset += flow.getBounds().height + 10;
- var flow = createFlow(s2d);
- flow.y = yoffset;
- flow.horizontalAlign = FlowAlign.Middle;
- flow.maxWidth = 150;
- flow.layout = Vertical;
- createText(flow, singleText, Align.Left);
- createText(flow, multilineText, Align.Right);
- yoffset += flow.getBounds().height + 10;
- {
- var flow = createFlow(s2d);
- flow.y = yoffset;
- flow.horizontalAlign = FlowAlign.Left;
- flow.maxWidth = 360;
- flow.horizontalSpacing = 8;
- flow.layout = Horizontal;
- var f = createText(flow, "short text", Align.Right);
- createText(flow, singleText, Align.Left);
- yoffset += flow.getBounds().height + 10;
- }
- var flow = createFlow(s2d);
- flow.y = yoffset;
- flow.x = 100;
- flow.horizontalAlign = FlowAlign.Middle;
- flow.layout = Vertical;
- {
- var f1 = createFlow(flow);
- createText(f1, multilineText, Align.Left);
- var f2 = createFlow(flow);
- createText(f2, multilineText, Align.Left);
- }
- yoffset += flow.getBounds().height + 10;
- var tagShowcase = "HtmlText supports next tags:" +
- "<p><p> tag:<p align='center'>Forces line breaks before and after.</p><p align='right'>It also supports `align` property.</p></p>" +
- "<p><br/> tag: Makes a<br/>line break</p>" +
- "<p><font> tag: Allows to control <font color='#ff00ff'>color</font>, <font opacity='0.8'>op</font><font opacity='0.6'>ac</font><font opacity='0.4'>it</font><font opacity='0.2'>y</font> and <font face='myFontFace'>face</font> properties.</p>" +
- "<p><img src='...'/> tag: Allows to insert a Tile <img src='logo'/> into html text</p>";
- var flow = createFlow(s2d);
- flow.y = yoffset;
- flow.maxWidth = 360;
- var text = createText(flow, tagShowcase, Align.Left);
- text.maxWidth = 360;
- onResize();
- }
- override function update(dt:Float) {
- for (w in resizeWidgets) {
- w.setMaxWidth(Std.int(300 + Math.sin(haxe.Timer.stamp() * 0.2) * 100.0));
- }
- }
- static function main() {
- hxd.Res.initEmbed();
- new HtmlText();
- }
- }
|