| Commit message (Expand) | Author | Files | Lines |
2012-02-05 | Do script quitting differently, using the wire protocol method, which means I... | David Walter Seikel | 1 | -1/+1 |
2012-02-05 | Fix up the Lua output filenames and fake SID. | David Walter Seikel | 1 | -2/+2 |
2012-02-05 | Implement the script main loop, and the script UUID, which we call SID, thoug... | David Walter Seikel | 1 | -1/+3 |
2012-02-05 | Implement more of the state handling stuff, with copious comments. | David Walter Seikel | 1 | -2/+2 |
2012-02-05 | Commentry. | David Walter Seikel | 1 | -2/+2 |
2012-02-05 | Use the internal Lua compile function instead of the external compile program... | David Walter Seikel | 1 | -4/+44 |
2012-02-05 | Merge doneParsing(), it's only used once. | David Walter Seikel | 1 | -75/+70 |
2012-02-05 | Right shifts are arithmetic shifts. | David Walter Seikel | 1 | -2/+2 |
2012-02-05 | Commentry clean ups. | David Walter Seikel | 1 | -16/+11 |
2012-02-05 | Remove a lot of old cruft that is no longer needed. Including the eveluator,... | David Walter Seikel | 1 | -617/+157 |
2012-02-05 | White space clean up. | David Walter Seikel | 1 | -17/+18 |
2012-02-04 | Fix up rotation and vector subscripts in expressions and non plain assignments. | David Walter Seikel | 1 | -9/+5 |
2012-02-04 | Comment new problem - dot operator not mixing too well with unplain assignments. | David Walter Seikel | 1 | -14/+4 |
2012-02-04 | Implement typecasts when needed. Actually, doing some extras for the moment. | David Walter Seikel | 1 | -2/+11 |
2012-02-04 | Set variables to a proper value if otherwised unitialized. | David Walter Seikel | 1 | -2/+12 |
2012-02-04 | Cooment a problem with typecasting strings to integers. | David Walter Seikel | 1 | -0/+18 |
2012-02-04 | Fix up constant variables and local crements. | David Walter Seikel | 1 | -10/+20 |
2012-02-04 | Move the predefined Lua stuff into the new LSL.lua module, then actualy use it. | David Walter Seikel | 1 | -14/+8 |
2012-02-04 | Track those functions and variables that are LSL constants. | David Walter Seikel | 1 | -2/+13 |
2012-02-04 | Fix up "assignments in the middle of expressions is legal in LSL, but not in ... | David Walter Seikel | 1 | -46/+124 |
2012-02-04 | Prepend all our generated names with an underscore, might help stop name polu... | David Walter Seikel | 1 | -25/+25 |
2012-02-04 | Make states actually work. | David Walter Seikel | 1 | -6/+6 |
2012-02-03 | Implement basic states. | David Walter Seikel | 1 | -6/+21 |
2012-02-03 | Assignments in the middle of expressions is legal in LSL, but not in Lua. Bu... | David Walter Seikel | 1 | -0/+35 |
2012-02-03 | Separate else and if if it's not an actual elseif. | David Walter Seikel | 1 | -1/+1 |
2012-02-03 | Make it easier to debug misplaced ends. | David Walter Seikel | 1 | -6/+9 |
2012-02-03 | Final part of the crement Lua implementation. | David Walter Seikel | 1 | -17/+30 |
2012-02-03 | Forgot about labels. | David Walter Seikel | 1 | -0/+9 |
2012-02-03 | Put assignments in their right place. | David Walter Seikel | 1 | -8/+10 |
2012-02-03 | Properly implement Lua crements. | David Walter Seikel | 1 | -53/+53 |
2012-02-03 | Translating crements to Lua is damned hard. Leaving it for later, but let it... | David Walter Seikel | 1 | -6/+6 |
2012-02-03 | Comment even tricksier bit crement cases. | David Walter Seikel | 1 | -1/+3 |
2012-02-03 | Commenting out the duplication of conditionals at the end. | David Walter Seikel | 1 | -6/+7 |
2012-02-03 | Half arsed bit ops, does not even result in compilable Lua sometimes. | David Walter Seikel | 1 | -8/+43 |
2012-02-03 | Switch to using LuaJIT for compiling. | David Walter Seikel | 1 | -1/+1 |
2012-02-03 | End the file with something useful. | David Walter Seikel | 1 | -0/+1 |
2012-02-03 | Implement Lua boolean operations. | David Walter Seikel | 1 | -0/+6 |
2012-02-03 | Only slightly less half arsed state. lol | David Walter Seikel | 1 | -2/+2 |
2012-02-03 | Half arsed Lua implementation of state and state change. | David Walter Seikel | 1 | -5/+26 |
2012-02-03 | Properly convert special asignments, and not equals. | David Walter Seikel | 1 | -1/+7 |
2012-02-03 | Actually Lua compile the result. | David Walter Seikel | 1 | -1/+8 |
2012-02-03 | Don't put extra comma at end of function parameter list, Lua don't lik them t... | David Walter Seikel | 1 | -2/+4 |
2012-02-03 | Take care of declerations without asignments. | David Walter Seikel | 1 | -0/+8 |
2012-02-03 | Lua locals. | David Walter Seikel | 1 | -0/+6 |
2012-02-03 | Half arsed Lua crement implementation. | David Walter Seikel | 1 | -18/+81 |
2012-02-03 | LSL "else if" -> Lua "elseif", and it was a bitch. lol | David Walter Seikel | 1 | -84/+53 |
2012-02-02 | More Lua conversions. For, if, else, elseif (sorta), and while. | David Walter Seikel | 1 | -6/+116 |
2012-02-02 | More Lua conversions. Concatenate, function arguments and table elemnt separ... | David Walter Seikel | 1 | -6/+27 |
2012-02-02 | Some Lua conversions. Types, typecasts, blocks, list, vector, rotation. | David Walter Seikel | 1 | -35/+100 |
2012-02-02 | Old comment-- | David Walter Seikel | 1 | -1/+0 |