• 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.

pyJass

Status
Not open for further replies.
Level 9
Joined
Nov 28, 2008
Messages
704
I have a very very basic python -> JASS converter up and running. I'm calling it basic because so far it only allows if true: notation and library:, struct: and such.

It also depends on cJass to remove set and call.

Is there any interest in me working on this and publicly releasing? Or can I just call this good, as it is all I need for my purposes?

JASS:
function Trig_T_Actions takes nothing returns nothing:
    if(true):
        BJDebugMsg("ROAR")

//===========================================================================
function InitTrig_T takes nothing returns nothing:
    set gg_trg_T = CreateTrigger(  )
    call TriggerRegisterTimerEventSingle( gg_trg_T, 5 )
    call TriggerAddAction( gg_trg_T, function Trig_T_Actions )

iThat's what I got working so far.
 
Status
Not open for further replies.
Top