• Check out the results of the Techtree Contest #19!
  • Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!

Text Placement

Status
Not open for further replies.
Level 17
Joined
Nov 18, 2008
Messages
1,537
How do I make it so text messages appear in different parts of the screen. For example, on the bottom like subtitles, or straight in the middle like a title.
 
Use x and y parameters of these functions to show text messages in specified positions:

JASS:
native DisplayTextToPlayer      takes player toPlayer, real x, real y, string message returns nothing
native DisplayTimedTextToPlayer takes player toPlayer, real x, real y, real duration, string message returns nothing

x is text position by X (range of values is [0.0 .. 0.825]);
y is text position by Y (range of values is [0.0 .. 0.7]);
Bigger values will show the text out of game screen.
 
When x=0 and y=0, message will be displayed as usual (near the left bottom corner of game screen).

Note that text is displayed with left side justify. So if message "Have you cake?" will be centered on the game screen (via x and y), other message "Have you cake and eat it too?" with the same coordinates will not.

Well, I think, some examples would be easier to understand:

JASS:
// this will display auto-timed message to red player right under the game clocks
call DisplayTextToPlayer(Player(0), 0.3, 0.65, "Have you an apple cake?")

// this will display message to blue player for 5 sec at the center of the gamescreen 
call DisplayTimedTextToPlayer(Player(1), 0.365, 0.27, 5.0, "FIGHT!")

// this will display message to all players for 10 minutes near the food usage window
local integer i = 0
loop
  call DisplayTimedTextToPlayer(Player(i), 0.65, 0.7, 600.0, "Food usage")
  set i = i + 1
  exitwhen i > 11
endloop
 
Just copy (or write by yourself) the function into custom script action and setup parameters:

JASS:
call DisplayTextToPlayer(Player(0), 0.0, 0.0, "<your text>")

For example:

  • Custom script: call DisplayTextToPlayer(Player(0), 0.3, 0.65, "Have you an apple cake?")
 
Well, Warcraft is written on C++. Jass natives are naturally c++ functions, with their pros and cons. So we can use some escape sequences to make such things.

I noticed that when I started learning Jass 2 years ago. I thought why users should type double backslash instead of one, and realized that the same notation uses C++.

I tested some sequences (with JNGP v5b) and got following results:
  • \a - beep sound - syntax error
  • \' - single quote - syntax error
  • \b - backspace - no effect
  • \t - tabulation - no effect
  • \" - double quote - works
  • \n - new line - works
  • \\ - backslash - works
However, there is no need in \' sequence, we can just write ' character directly.
 
Is there a way to find the resolution the player is using to find the center? Because I don't think you can find a true center without that.
 
Status
Not open for further replies.
Back
Top