Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-09-14 | Warn about conditional return and add script dumper | Ben Longbons | 1 | -2/+132 | |
The problem is that since 'if' is a function, the 'return' action is executed *before* the recursive return. This messes up the stack. Sooner or later I'll be able to fix the scripting language properly, but it's probably a good idea to goto L_Return to clear variables anyway. | |||||
2013-09-09 | Use IP4 classes and rename conf variables | Ben Longbons | 1 | -4/+4 | |
2013-09-07 | Increase max script array size from 128 to 256 | Ben Longbons | 1 | -3/+3 | |
2013-08-20 | Refactor npc event timers to have an expired state | Ben Longbons | 1 | -1/+1 | |
This is needed for setnpctimer 0; to work in the ultimate OnTimer#: label. | |||||
2013-08-19 | Add dumpers for the rest of the stack types | Ben Longbons | 1 | -2/+10 | |
2013-08-19 | Make some npc errors better | Ben Longbons | 1 | -1/+11 | |
2013-08-01 | Poison std::string and use the various string classes | Ben Longbons | 1 | -274/+258 | |
2013-06-27 | Make callfunc/callsub in an if an error | Ben Longbons | 1 | -2/+10 | |
Also make all errors fatal and clean up messages a bit. | |||||
2013-06-26 | Addition is NOT symmetrical, internally | Ben Longbons | 1 | -3/+2 | |
2013-06-26 | Less UB | Ben Longbons | 1 | -0/+2 | |
2013-06-26 | Add missing PARAM bytecode handler | Ben Longbons | 1 | -2/+8 | |
2013-06-25 | Fix bugs | Ben Longbons | 1 | -192/+212 | |
2013-06-23 | add new stuff stuff (with tests!), poison memcmp and strncpy | Ben Longbons | 1 | -2/+2 | |
2013-06-18 | Also poison memcpy, memmove, and memset | Ben Longbons | 1 | -11/+9 | |
2013-06-11 | Allegedly remove all manual memory management | Ben Longbons | 1 | -1506/+1230 | |
2013-05-25 | Switch block_list and subclasses to dumb_ptr | Ben Longbons | 1 | -114/+127 | |
Now we're well-defined, since we're actually calling ctors and dtors. Most of this code will not survive long ... | |||||
2013-05-23 | Make block_list a base class | Ben Longbons | 1 | -28/+28 | |
2013-05-23 | Rename fields of block_list in preparation for subclassing | Ben Longbons | 1 | -22/+22 | |
This is necessary because at least some of the subclasses overlap names. | |||||
2013-05-18 | Tweak a little memory management in char-server | Ben Longbons | 1 | -16/+14 | |
2013-04-30 | Restore fakenpcname script command | Ben Longbons | 1 | -1/+23 | |
Closes: #2 | |||||
2013-04-27 | Enumize ItemLook | Ben Longbons | 1 | -1/+1 | |
2013-04-27 | Force timers to be managed | Ben Longbons | 1 | -8/+5 | |
2013-04-13 | Fix error in "return" script command | Ben Longbons | 1 | -4/+7 | |
2013-04-11 | Also implement x32 support | Ben Longbons | 1 | -29/+17 | |
2013-04-09 | Change script call/ret code to avoid evil casting | Ben Longbons | 1 | -8/+45 | |
2013-03-21 | Restore shop script function | Ben Longbons | 1 | -1/+19 | |
2013-03-01 | Convince skills to work | Ben Longbons | 1 | -13/+11 | |
2013-02-23 | Replace struct dbt with typesafe std::map wrappers | Ben Longbons | 1 | -71/+44 | |
Also fix broken save/accreg.txt reading. | |||||
2013-02-12 | Replace mt_rand with <random> | Ben Longbons | 1 | -37/+13 | |
Also add some utility methods and classes. | |||||
2013-02-12 | Strictify timers | Ben Longbons | 1 | -31/+36 | |
2013-02-07 | Remove some macros | Ben Longbons | 1 | -30/+35 | |
2013-02-07 | Remove some more Skill-related stuff | Ben Longbons | 1 | -9/+0 | |
2013-02-01 | Remove unnecessary includes, speeding up recompilation | Ben Longbons | 1 | -6/+4 | |
2013-01-17 | Clean up some things after declassization | Ben Longbons | 1 | -5/+8 | |
2013-01-17 | Remove PC/mob disguises and hard-coded classes | Ben Longbons | 1 | -4/+0 | |
2013-01-17 | Remove all non-NPC skills | Ben Longbons | 1 | -10/+1 | |
2013-01-09 | Make incoming packets read-only | Ben Longbons | 1 | -3/+4 | |
2013-01-08 | Improve warning management more | Ben Longbons | 1 | -3/+9 | |
2013-01-08 | Improve warnings; fix const_db.txt bug. | Ben Longbons | 1 | -6/+13 | |
2013-01-07 | Add warning newlines; fix crash on exit. | Ben Longbons | 1 | -0/+6 | |
2013-01-07 | Use cxxstdio | Ben Longbons | 1 | -172/+127 | |
2012-12-24 | Enumify some more things ... maybe even everything | Ben Longbons | 1 | -58/+49 | |
2012-12-24 | Remove sending of packets the client can't handle | Ben Longbons | 1 | -3/+0 | |
2012-12-24 | Remove unused script functions | Ben Longbons | 1 | -1771/+13 | |
2012-12-24 | Minor script.cpp tweakage | Ben Longbons | 1 | -387/+391 | |
2012-12-24 | Purge some unused functions | Ben Longbons | 1 | -185/+189 | |
2012-12-24 | Enumify option, opt1, opt2, and opt3 | Ben Longbons | 1 | -9/+5 | |
2012-12-24 | Cleanup headers and remove all uses of va_list except logging | Ben Longbons | 1 | -163/+119 | |
2012-12-15 | Prepare to trim skills | Ben Longbons | 1 | -38/+35 | |
2012-12-14 | Some formatting fixes before I go insane | Ben Longbons | 1 | -1795/+1773 | |
Also delete the French translation from ladmin. |