Snippet Dummy

Dirac

22710180
Reaction score
147
JASS:
/**********************************************************************

My own version of the so called DummyCaster "system"

***********************************************************************
*
*   struct Dummy
*
*       method load takes integer abilityRawCode returns nothing
*       method unload takes integer abilityRawCode returns nothing
*           -   Adds or removes the given ability
*           -   Dummy['A000'].load()
*
*       static method operator x= takes real n returns nothing
*       static method operator y= takes real n returns nothing
*       static method operator z= takes real n returns nothing
*           -   Sets the unit's position
*
*       static player owner
*           -   Sets the dummy's owner.
*
*       integer level
*           -   Sets the dummy's ability level.
*           -   Dummy['A000'].level=2
*
*       method castOnTarget takes unit target returns boolean
*       method castOnPoint takes real x, real y returns boolean
*       method cast takes nothing returns boolean
*           -   Dummy[OrderId].castOnTarget(unit)
*
***********************************************************************

    HOW TO IMPLEMENT:
*       Import this code into an empty trigger in your map, requires NewGen installed. Save the map, reopen it,
*       and then delete the "!" exclamation mark from the textmacro below
*/
        //! runtextmacro DUMMY_UNIT_CREATE()

/*********************************************************************/
//! zinc

library Dummy
{
    public  constant integer DUMMY_TYPE      ='dumy';
    public  constant integer CROW_FORM       ='Amrf';
           
    unit    dummy;
    boolean p=false;
    
    module Init
    {
        private static method onInit()
        {
            dummy=CreateUnit(Player(15),DUMMY_TYPE,0,0,0);
            UnitAddAbility(dummy,CROW_FORM);
            UnitRemoveAbility(dummy,CROW_FORM);
        }
    }

    public struct Dummy[]
    {
        static method is(unit whichUnit)->boolean
        {
            return dummy==whichUnit;
        }
            
        static method operator x=(real n)
        {
            SetUnitX(dummy,n);
            p=true;
        }
        
        static method operator y=(real n)
        {
            SetUnitY(dummy,n);
            p=true;
        }
            
        static method operator z=(real n)
        {
            SetUnitFlyHeight(dummy,n,0);
        }
            
        static method operator owner=(player p)
        {
            SetUnitOwner(dummy,p,false);
        }
        
        method operator level=(integer i)
        {
            SetUnitAbilityLevel(dummy,this,i);
        }
            
        method cast()
        {
            IssueImmediateOrderById(dummy,this);
        }
            
        method castOnTarget(widget t)
        {
            if(!p)
            {
                SetUnitX(dummy,GetWidgetX(t));
                SetUnitY(dummy,GetWidgetY(t));
            }
            p=false;
            IssueTargetOrderById(dummy,this,t);
        }
            
        method castOnPoint(real x,real y)
        {
            if(!p)
            {
                SetUnitX(dummy,x);
                SetUnitY(dummy,y);
            }
            p=false;
            IssuePointOrderById(dummy,this,x,y);
        }
        
        method load()->boolean
        {
            return UnitAddAbility(dummy,this);
        }
            
        method unload()->boolean
        {
            return UnitRemoveAbility(dummy,this);
        }
                
        module Init;
    }
}
//! endzinc
//! textmacro DUMMY_UNIT_CREATE
    //! externalblock extension=lua ObjectMerger $FILENAME$
        //! i setobjecttype("units")
        //! i createobject("ewsp","dumy")
        //! i makechange(current,"uabi","Avul,Aloc,Aeth")
        //! i makechange(current,"uble","0")
        //! i makechange(current,"ucbs","0")
        //! i makechange(current,"umxp","0")
        //! i makechange(current,"umxr","0")
        //! i makechange(current,"umdl","war3mapImported\\dummy.mdl")
        //! i makechange(current,"uico","replaceableTextures\\CommandButtons\\BTNtemp.blp")
        //! i makechange(current,"uimz","0")
        //! i makechange(current,"ulpz","0")
        //! i makechange(current,"uprw","1")
        //! i makechange(current,"uspa","")
        //! i makechange(current,"ucbs","0")
        //! i makechange(current,"udty","divine")
        //! i makechange(current,"umvs","522")
        //! i makechange(current,"umvt","hover")
        //! i makechange(current,"ucol","0")
        //! i makechange(current,"ufle","0")
        //! i makechange(current,"ufoo","0")
        //! i makechange(current,"uhom","1")
        //! i makechange(current,"umpi","1000")
        //! i makechange(current,"umpm","1000")
        //! i makechange(current,"umpr","100")
        //! i makechange(current,"urac","commoner")
        //! i makechange(current,"usid","0")
        //! i makechange(current,"usin","0")
        //! i makechange(current,"utyp","")
        //! i makechange(current,"ubui","")
        //! i makechange(current,"upgr","")
        //! i makechange(current,"unam","DummyUnit")
        //! i makechange(current,"utip","DummySystem")
        //! i makechange(current,"utub","")
    //! endexternalblock
//! endtextmacro
 

Dirac

22710180
Reaction score
147
J4L isn't user friendly, plus, it forces the user to move the dummy, add and remove abilities, change it's owner, ability level and has no safety methods.

Mine is clearly more useful
 

Laiev

Hey Listen!!
Reaction score
188
You forget to change this:

[ljass]<Your Jass NewGen folder>\tesh\includes\CCS.j[/ljass]

and this

[ljass]- CCS by Dirac[/ljass]

They are named your system :p

Also you forget an ILLUSION at the header ^_^'
 

Solmyr

Ultra Cool Member
Reaction score
30
  1. Your dummy unit doesn't cast instantaneously. This means that it will fail very hard when used with groups or for consecutive casts.
  2. It doesn't work with channeling spells or spells that have a casting time.
  3. Your functions have way too many arguments.
Why would I ever use this over xecast?

Well, J4L was faster than you. (But it's not that big surprise - he is Jesus4Lyf)
http://www.thehelper.net/forums/showthread.php/133873-DummyCaster
Jesus4Lyf's DummyCaster is implemented horribly (just like all of his scripts).
 

Dirac

22710180
Reaction score
147
1. It does, that's the whole idea
2. No, i should put add that to the system's description, however, there are always ways to avoid dummy channeling spells
3. That's why i added the TESH, these arguments can't be avoided
 

PurgeandFire

zxcvmkgdfg
Reaction score
509
You should add a demo map. ;) It is generally useful for these kinds of resources where some might not see the purpose of it.

Jesus4Lyf's DummyCaster is implemented horribly (just like all of his scripts).

I'm not sure what you mean. It creates a dummy unit, that's it. It assigns it to a variable and it is left to the user to control its casting. It does nothing more and isn't meant to do anything more.

If you are saying that it is inferior to xecast then I am not sure what to say, as the two don't seem to be comparable considering one is meant for the actual casting process while the other is strictly for creation.

Sorry if I misunderstood, but those kinds of blanket statements don't make sense when no reasoning is given for them.
 

tooltiperror

Super Moderator
Reaction score
231
This appears to be the less useful cousin of xecast (an xe module).

Graveyarded.
 

Dirac

22710180
Reaction score
147
after some tests, xecast seems to be broken (most of the times dummies wont cast the spell), plus it's way of working is confusing, noneffective and outdated.

Updated the system
-Changed everything.
 

Dirac

22710180
Reaction score
147
Thanks for the interest Ghan
I updated the system
-Changed the documentation
-The dummy's movement type is now Hover.
 

luorax

Invasion in Duskwood
Reaction score
67
There's a really big chance of rawcode glitch, 'e000' is an object editor standard. You should change it to something different and tell the user where and how to change it in the LUA script (not everyone has the required knowledge, you know)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    So what it really is me trying to implement some kind of better site navigation not change the whole theme of the site
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1
  • The Helper The Helper:
    The recipe today is Sloppy Joe Casserole - one of my faves LOL https://www.thehelper.net/threads/sloppy-joe-casserole-with-manwich.193585/

      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