ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/freezethaw.C
Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Sat May 26 15:44:08 2007 UTC (17 years ago) by root
Branch: MAIN
CVS Tags: rel-2_1
Changes since 1.18: +3 -29 lines
Diff to previous 1.18
- restore after combined mainboard+harddisk crash
- cleanup/fixes for 2.1 release
- fix invoke to actually do work
- refactor invoke shortcuts, gcc cannot inline
  varargs functions.
- optimised invoke to 4-5 insns in the common case.
- optimised (For no good reason) the int-to-ascii
  conversions of dynbuf_text into division-less and
  branchless code (of which I am pretty proud).
- actually move players to their savebed when they did
  not use one and the map has been reste in the meantime.
  does not kill (yet) when too long.
- enter_map is now handled completely in perl.
- goto is now using generation counting to ensure that only the
  most-recently-issues goto will succeed.
- make some heavy use of __builtin_expect to streamline
  rare callbacks even more.
- optimised thawer.

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Mon Apr 30 05:54:14 2007 UTC (17 years, 1 month ago) by root
Branch: MAIN
Changes since 1.17: +0 -2 lines
Diff to previous 1.17
works a tad better

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Mon Apr 23 18:09:57 2007 UTC (17 years, 1 month ago) by root
Branch: MAIN
Changes since 1.16: +1 -1 lines
Diff to previous 1.16
- add format utility function.
- split dynbuf into dynbuf and dynbuf_text.
- use dynbuf_text for examine strings instead of
  outputting each line seperately. tried to use stringstreams
  but they add insane overheads (as does std::string, but less so).

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Mon Apr 16 10:14:26 2007 UTC (17 years, 1 month ago) by root
Branch: MAIN
Changes since 1.15: +12 -3 lines
Diff to previous 1.15
- rewrite treasure parser to new framework just for fun.
- actually call load_treasures again.
- fix bugs.

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Thu Apr 5 13:44:31 2007 UTC (17 years, 2 months ago) by root
Branch: MAIN
Changes since 1.14: +3 -3 lines
Diff to previous 1.14
rename <player>.pl to playerdata, fix error messages in freezethaw

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Fri Mar 2 10:15:40 2007 UTC (17 years, 3 months ago) by pippijn
Branch: MAIN
CVS Tags: rel-2_0
Changes since 1.13: +1 -0 lines
Diff to previous 1.13
some tiny cleanups and moving of non-time-critical commands into perl

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Thu Mar 1 19:32:59 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.12: +4 -4 lines
Diff to previous 1.12
ohne worte

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Thu Mar 1 12:28:16 2007 UTC (17 years, 3 months ago) by pippijn
Branch: MAIN
Changes since 1.11: +3 -0 lines
Diff to previous 1.11
nano-cleanups

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Fri Feb 16 19:43:41 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.10: +3 -3 lines
Diff to previous 1.10
- identified random memory corrutpion bug
- fixed most likely cause for bug above
- rewrote object loader etc. into a simple one-line lookahead
  parser.
- rewrote/cleaned up archetype, treasure, artifact, formula parser.
- some optimisations / cleanups

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Thu Feb 15 21:07:49 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.9: +47 -29 lines
Diff to previous 1.9
- use a simpler, less fancy loader base design (basically a one-line-lookahead
  top-down parser).

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Thu Feb 1 19:17:03 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.8: +1 -1 lines
Diff to previous 1.8
goof

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Thu Feb 1 19:15:39 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.7: +47 -2 lines
Diff to previous 1.7
- improve error messages from object_thawer to incldue line numbers
- provide geenric parse error handler
- finish basic design of generic object loader
- implement generic regions loader
- use it to load regions:
  loader_region loader;
  if (!loader.load (filename))
    error;
- regions should now be the very first filetype that could be reloaded at runtime

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Tue Jan 23 03:56:45 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.6: +0 -4 lines
Diff to previous 1.6
I knew there was an explanation

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Sun Jan 14 02:00:37 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.5: +7 -5 lines
Diff to previous 1.5
- introduce cf::attachable::thawer_merge, allowing classes
  to overwrite what happens when two objects get merged.
- protect some extension data with it
- make unlink_save blocking, so we do not get needless reset loops
  because of slow disk response.

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Tue Jan 9 21:32:42 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.4: +1 -1 lines
Diff to previous 1.4
- added $cf::WAIT_FOR_TICK*
- tuned map-scheduler and player-scheduler
- added $op->inv_recursive
- added objects_size/objects($index) and actives_size/actives($index)
  for access to the object and actives vector.
- more robust player loader
- removed _perl_data attribute support
- SIGINT/TERM/HUP are now safe as they are handled synchronously.
- replaced LOOK_OBJ by client_visible
- cleanups

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Sun Jan 7 02:39:14 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.3: +37 -18 lines
Diff to previous 1.3
""

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Sat Dec 30 20:32:30 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.2: +1 -3 lines
Diff to previous 1.2
fix some bugs

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Sat Dec 30 14:34:10 2006 UTC (17 years, 5 months ago) by elmex
Branch: MAIN
Changes since 1.1: +3 -1 lines
Diff to previous 1.1
fixed a crash in object_freezer::as_string (), where too many items were popped
from the perl stack.

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Sat Dec 30 10:16:11 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
preliminary snapshot check-in, DO NOT USE IN PRODUCTION SYSTEMS
See the Changes file for details

Convenience Links

Links to HEAD: (view) (download) (annotate) Links to rel-2_1: (view) (download) (annotate)

Compare Revisions

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a