Snippet NewTextTag

13lade619

is now a game developer :)
Reaction score
398
setting up floating texts is annoying right?
you call more than 5 functions yourself + most of them are BJs,

so here's a solution:
A text tag function that takes all the necessary arguments,
and no nasty BJs to get in the way (all calculations done inside BJs are redone).

JASS:
library NewTextTag

function NewTextTagUnitFunc takes string txtstring,real size,unit U,real zOff,integer red,integer green,integer blue,integer alpha,boolean perma,real speed,real angle,real life,real fade returns texttag
    set bj_lastCreatedTextTag = CreateTextTag()
    call SetTextTagText(bj_lastCreatedTextTag, txtstring, (size * 0.0023))
    call SetTextTagPosUnit(bj_lastCreatedTextTag,U,zOff)
    call SetTextTagColor(bj_lastCreatedTextTag,red,green,blue,alpha)
    call SetTextTagPermanent( bj_lastCreatedTextTag, perma )
    call SetTextTagVelocity(bj_lastCreatedTextTag, (speed * 0.0005546875) * Cos(angle * bj_DEGTORAD) , (speed * 0.0005546875) * Sin(angle * bj_DEGTORAD))
    call SetTextTagLifespan(bj_lastCreatedTextTag, life )
    call SetTextTagFadepoint(bj_lastCreatedTextTag, fade )
    return bj_lastCreatedTextTag
endfunction

function NewTextTagPointFunc takes string txtstring,real size,real x, real y,real zOff,integer red,integer green,integer blue,integer alpha,boolean perma,real speed,real angle,real life,real fade returns texttag
    set bj_lastCreatedTextTag = CreateTextTag()
    call SetTextTagText(bj_lastCreatedTextTag, txtstring, (size * 0.0023))
    call SetTextTagPos(bj_lastCreatedTextTag, x, y, zOff)
    call SetTextTagColor(bj_lastCreatedTextTag,red,green,blue,alpha)
    call SetTextTagPermanent( bj_lastCreatedTextTag, perma )
    call SetTextTagVelocity(bj_lastCreatedTextTag, (speed * 0.0005546875) * Cos(angle * bj_DEGTORAD) , (speed * 0.0005546875) * Sin(angle * bj_DEGTORAD))
    call SetTextTagLifespan( bj_lastCreatedTextTag, life )
    call SetTextTagFadepoint( bj_lastCreatedTextTag, fade )
    return bj_lastCreatedTextTag
endfunction

endlibrary


Use:

JASS:
function NewTextTagUnitFunc takes string txtstring,real size,unit U,real zOff,integer red,integer green,integer blue,integer alpha,boolean perma,real speed,real angle,real life,real fade returns texttag

or
JASS:
function NewTextTagPointFunc takes string txtstring,real size,real x, real y,real zOff,integer red,integer green,integer blue,integer alpha,boolean perma,real speed,real angle,real life,real fade returns texttag


*Create a trigger, name it NewTextTag and paste the entire code.
**Or copy the code inside the library and paste in in the Map Header.
***Or copy the code inside the library inside your own library of custom functions.

*JASS / GUI Custom Script
*Leakless, since lifespan destroys the texttag after.
*RGB values take 0 to 255, not percentage.
*Alpha 0 is transparent, 255 is opaque.

*Functions return texttags, so you can manipulate them later (within their lifespan ofc).
*If you set permanence to false, be sure to destroy the text tag after.

Feel free to use. :D.
 

Darthfett

Aerospace/Cybersecurity Software Engineer
Reaction score
615
You're creating a BJ function so that people don't have to look up the functions they need?

This is not exactly the sort of thing we need filling our systems forum, this is just clutter. Blizzard has already provided us with a nice BJ function which does exactly this.
 

13lade619

is now a game developer :)
Reaction score
398
the BJ for floating texts redirect to more BJs which redirect to more BJs..
this is a little cleaner.

take a look at this:
JASS:
function CreateTextTagUnitBJ takes string s, unit whichUnit, real zOffset, real size, real red, real green, real blue, real transparency returns texttag
    set bj_lastCreatedTextTag = CreateTextTag()
    call SetTextTagTextBJ(bj_lastCreatedTextTag, s, size)
    call SetTextTagPosUnitBJ(bj_lastCreatedTextTag, whichUnit, zOffset)
    call SetTextTagColorBJ(bj_lastCreatedTextTag, red, green, blue, transparency)

    return bj_lastCreatedTextTag
endfunction

JASS:
function SetTextTagTextBJ takes texttag tt, string s, real size returns nothing
    local real textHeight = TextTagSize2Height(size)

    call SetTextTagText(tt, s, textHeight)
endfunction

JASS:
function TextTagSize2Height takes real size returns real
    return size * 0.023 / 10
endfunction

JASS:
native SetTextTagText takes texttag t, string s, real height returns nothing


see? and that's only setting the text for the texttag. :).
 

Faust

You can change this now in User CP.
Reaction score
123
It makes stuff a little easier and shorter, you don't have to love it.
Simple and useful (to some level :p).
 

Tom_Kazansky

--- wraith it ! ---
Reaction score
157
@13lade619, I think your functions should return the texttag
JASS:
//...
    set bj_lastCreatedTextTag = Ftext
    set Ftext = null
    return bj_lastCreatedTextTag
endfunction


and also add an argument for checking texttag is in fogs or not.

JASS:
function CheckTexttagVisibility takes texttag tt, real x, real y returns nothing
    local integer int = 0
    local player p
    loop
        exitwhen int > 11
        set p = Player(int)
        if GetLocalPlayer() == p then
            call SetTextTagVisibility( tt , IsVisibleToPlayer(x,y, p )  )
        endif
        set int = int + 1
    endloop
    set p = null
endfunction


they are just suggestions, use or not is up to you :)
 

Tom_Kazansky

--- wraith it ! ---
Reaction score
157
>are you sure it's a good idea to set it to the bj?

bj_lastCreatedTextTag is just a global variable, if your function returns textag with the local var Ftext, you will get a leak.

JASS:
//...
    return Ftext //didn't null Ftext -> leak
endfunction
 

Jesus4Lyf

Good Idea™
Reaction score
397
Good stuff. Good to see systems updated swiftly based on feedback. :)
JASS:
function NewTextTagUnitFunc takes string txtstring,real size,unit U,real zOff,integer red,integer green,integer blue,integer alpha,boolean perma,real speed,real angle,real life,real fade returns texttag

>If people need to figure out what this sort of thing does, it's probably faster to write the whole snippet themselves than get it from here.

Try writing functions that have less parameters, or I fear this is unlikely to get approved or used. For example, I would remove size, zOff, alpha, perma, angle (??), and please explain what life and fade are... Those that I suggest you remove could be constants, inlined manually or as global constants, up to you. Grouping the natives together doesn't actually add user friendliness. Making more things constant so the user doesn't have to worry does. :)

PS. My ideal function would be: function FloatUpTextTag takes string txtstring,unit U,integer red,integer green,integer blue returns texttag
resulting in a critical strike style texttag. :)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top