ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/map.h
Revision 1.75 - (view) (download) (annotate) - [select for diffs]
Sat Apr 21 16:56:32 2007 UTC (17 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-2_1
Changes since 1.74: +1 -0 lines
Diff to previous 1.74
having a) monsters as treasures b) multipart monsters as treasures
and c) multipart monsters as terasures on tiled maps... hit a big
pile of bugs again.

this change:

- implements a per-map active flag. when items are being inserted
  they are activated or deactivated according to that flag.
  this could get rid of most or even all of the explicit
  activate/deactivate calls.
- implement some glue to make instantiating multipart objects easier
  (this is used inside fix_multipart_objects and might make it possible
  to put multipart objects at map borders - those were winged before)
- do finer-grained locking as to not lead to deadlocks when insert
  recurses e.g. when loading tiled maps.

Revision 1.74 - (view) (download) (annotate) - [select for diffs]
Thu Apr 19 16:23:47 2007 UTC (17 years, 2 months ago) by root
Branch: MAIN
Changes since 1.73: +0 -38 lines
Diff to previous 1.73
- implement "random encounters" by simply populating the
  worldmap randomly by region.
- allow treasurelists to silently forward-reference archetypes
  (should have an extra checkign path for never-defined archetypes)
- fix GT_ENVIRONMENT, which had the semantics of putting treasure
  items _and_ their inventory on the floor, now only puts the
  items themselves on the floor.
- remove warning about generated inventory - some items simply
  can come with an empty inventory.
- do some other minor improvements.

Revision 1.73 - (view) (download) (annotate) - [select for diffs]
Sat Apr 14 07:23:00 2007 UTC (17 years, 2 months ago) by root
Branch: MAIN
Changes since 1.72: +4 -3 lines
Diff to previous 1.72
implement defaulting region by map path match

Revision 1.72 - (view) (download) (annotate) - [select for diffs]
Mon Mar 12 01:13:10 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.71: +0 -2 lines
Diff to previous 1.71
- remove faces form each mapspace, as they were stored and calculated
  *solely* for magicmap. sic.
- as update_ is a major bottleneck, this will certainly help load, too.
- semantics have changed: objects with blank faces are now transfered,
  but i assume this is rare (and might give a nice hint about invisible stuff :)

Revision 1.71 - (view) (download) (annotate) - [select for diffs]
Sun Mar 11 02:12:44 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.70: +1 -1 lines
Diff to previous 1.70
- MAJOR CHANGE
- you now need to use cfutil to install arches.
- former bigfaces are broken in the server
- bigfaces are no longer supported. at all.
- use face numbers instead of pointers
  * saves lotsa space
  * saves lotsa indirections
  * saves lots(?) cpu cycles
- completely rewrote face handling
- faces can now be added at runtime
- reload will add new faces
- this does not apply to animations
- use a hastable instead of binary search (faster) for faces
- face caching is broken
- facesets are gone
- server always reports MAX_FACES to any client who asks

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

Revision 1.69 - (view) (download) (annotate) - [select for diffs]
Sat Feb 17 23:32:11 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.68: +3 -2 lines
Diff to previous 1.68
- prepare find_style_map rewrite
- move pick_random_object to maptile::
- make pick_random_object fair overe the numbe rof monsters and
  no longer prefer big monsters.

Revision 1.68 - (view) (download) (annotate) - [select for diffs]
Fri Feb 16 19:43:41 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.67: +1 -1 lines
Diff to previous 1.67
- 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.67 - (view) (download) (annotate) - [select for diffs]
Thu Feb 15 21:07:49 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.66: +1 -0 lines
Diff to previous 1.66
- use a simpler, less fancy loader base design (basically a one-line-lookahead
  top-down parser).

Revision 1.66 - (view) (download) (annotate) - [select for diffs]
Wed Feb 7 23:50:01 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.65: +4 -2 lines
Diff to previous 1.65
interim check-in for server upgrade

Revision 1.65 - (view) (download) (annotate) - [select for diffs]
Wed Feb 7 02:04:46 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.64: +3 -0 lines
Diff to previous 1.64
rework material code in preparation for nuking object->materials, also add some useful object methods in preparation of the mapspace limiting

Revision 1.64 - (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.63: +13 -12 lines
Diff to previous 1.63
- 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.63 - (view) (download) (annotate) - [select for diffs]
Mon Jan 29 16:11:48 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.62: +8 -7 lines
Diff to previous 1.62
- add visibility_at to players (only), might/should be an object method
- mood spells only affect visible spaces now.

Revision 1.62 - (view) (download) (annotate) - [select for diffs]
Mon Jan 29 15:04:21 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.61: +1 -1 lines
Diff to previous 1.61
rewrote region parser, changed region fileformat a bit

Revision 1.61 - (view) (download) (annotate) - [select for diffs]
Mon Jan 29 14:46:01 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.60: +4 -3 lines
Diff to previous 1.60
partial region cleanup

Revision 1.60 - (view) (download) (annotate) - [select for diffs]
Sat Jan 27 23:59:29 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.59: +8 -6 lines
Diff to previous 1.59
- implement per-space regions

Revision 1.59 - (view) (download) (annotate) - [select for diffs]
Thu Jan 25 03:54:45 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.58: +6 -1 lines
Diff to previous 1.58
added checkrusage extension

Revision 1.58 - (view) (download) (annotate) - [select for diffs]
Wed Jan 24 22:42:48 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.57: +1 -0 lines
Diff to previous 1.57
- introduce nodrop flag for maps to keep stuff from beign dropped
  _on destroy only_.
  this fixes the problem with Sultur, slug of terror :)
- resize {link} map to be smaller

Revision 1.57 - (view) (download) (annotate) - [select for diffs]
Sat Jan 20 23:39:09 2007 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.56: +0 -7 lines
Diff to previous 1.56
*** empty log message ***

Revision 1.56 - (view) (download) (annotate) - [select for diffs]
Fri Jan 19 21:49:58 2007 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.55: +1 -1 lines
Diff to previous 1.55
- fix a crashing bug inside the random map generator
- do not decrease dungeon size with random map depth

Revision 1.55 - (view) (download) (annotate) - [select for diffs]
Fri Jan 19 17:50:11 2007 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.54: +1 -1 lines
Diff to previous 1.54
- rename Animations => animation
- rename New_Face => facetile
- add but do not implement some generic loader framework classes

Revision 1.54 - (view) (download) (annotate) - [select for diffs]
Thu Jan 18 16:19:34 2007 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.53: +1 -1 lines
Diff to previous 1.53
- fix a horrendous bug that might have caused all the map corruption
- optimise/modernise some map-insert-related stuff
- fix debug_desc
- remove crypt configury
- minor adjustments/cleanups

Revision 1.53 - (view) (download) (annotate) - [select for diffs]
Mon Jan 15 21:06:19 2007 UTC (17 years, 5 months ago) by pippijn
Branch: MAIN
Changes since 1.52: +22 -22 lines
Diff to previous 1.52
comments

Revision 1.52 - (view) (download) (annotate) - [select for diffs]
Mon Jan 15 00:40:49 2007 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.51: +20 -0 lines
Diff to previous 1.51
- micro-optimised hit_map and ok_to_put_more, this
  immensely helped reduce load on dense maps.
- introduced xy_normalise, which is imho a saner interface
  and much faster than get_map_flags so should be used
  in new code (and time-critical code).

Revision 1.51 - (view) (download) (annotate) - [select for diffs]
Sat Jan 13 23:06:13 2007 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.50: +11 -8 lines
Diff to previous 1.50
WARNING: this release is BROKEN

- rewrote map handling. map types are now completely pluggable, maybe
  *too* pluggable, as everything is a plug-in now.
- mark mandatory extensions as such.
- handle overloaded attachable objects correctly.
- many minor changes.

Revision 1.50 - (view) (download) (annotate) - [select for diffs]
Wed Jan 10 01:16:54 2007 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.49: +2 -0 lines
Diff to previous 1.49
aggressively prefetch tiled maps around the player
- prefetch maps on every tick
- prefetch maps and block the player when entering maps

Revision 1.49 - (view) (download) (annotate) - [select for diffs]
Tue Jan 9 21:32:42 2007 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.48: +0 -1 lines
Diff to previous 1.48
- 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.48 - (view) (download) (annotate) - [select for diffs]
Sat Jan 6 14:42:30 2007 UTC (17 years, 5 months ago) by pippijn
Branch: MAIN
Changes since 1.47: +1 -0 lines
Diff to previous 1.47
added some copyrights

Revision 1.47 - (view) (download) (annotate) - [select for diffs]
Thu Jan 4 16:19:32 2007 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.46: +23 -25 lines
Diff to previous 1.46
- word of recall activated the player indirectly
- implement maptile->xy_find and xy_load
- separate find and load, even on C level
- generate map_leave/enter and map_change events even for tiled map changes
  (experimental)
- implement mainloop freezeing by start/stop, not skipping ticks
- no map updates when player !active

Revision 1.46 - (view) (download) (annotate) - [select for diffs]
Mon Jan 1 12:28:47 2007 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.45: +5 -0 lines
Diff to previous 1.45
set original flag so decay object doesn't go wild

Revision 1.45 - (view) (download) (annotate) - [select for diffs]
Sun Dec 31 18:10:40 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.44: +2 -2 lines
Diff to previous 1.44
- style maps need very special treatment
- cf has a nonzero chance of crashing in a random map

Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Sun Dec 31 17:17:23 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.43: +1 -0 lines
Diff to previous 1.43
many minor changes everywhere, random maps crash sometimes but design is in place

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Sun Dec 31 10:28:36 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.42: +44 -58 lines
Diff to previous 1.42
different interface design for c++/perl map handling, some random map framework

Revision 1.42 - (view) (download) (annotate) - [select for diffs]
Sat Dec 30 18:45:28 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.41: +1 -1 lines
Diff to previous 1.41
random maps are nphard

Revision 1.41 - (view) (download) (annotate) - [select for diffs]
Sat Dec 30 12:38:18 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.40: +1 -1 lines
Diff to previous 1.40
reformat

Revision 1.40 - (view) (download) (annotate) - [select for diffs]
Sat Dec 30 10:16:10 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.39: +104 -47 lines
Diff to previous 1.39
preliminary snapshot check-in, DO NOT USE IN PRODUCTION SYSTEMS
See the Changes file for details

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Wed Dec 27 13:13:47 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.38: +3 -0 lines
Diff to previous 1.38
misc stuff

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Wed Dec 27 09:28:01 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.37: +2 -0 lines
Diff to previous 1.37
introduce for_all_maps

Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Wed Dec 27 05:59:58 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.36: +2 -2 lines
Diff to previous 1.36
transpose spaces array so the typical x/y loop scans linearly

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Tue Dec 26 20:04:09 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.35: +2 -1 lines
Diff to previous 1.35
- added maptile->insert and object->insert_at methods that might
  make code using it clearer.
- replaced some insert_ob_in_map calls.

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Tue Dec 26 05:44:15 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34
formatting

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Mon Dec 25 14:54:44 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.33: +10 -42 lines
Diff to previous 1.33
the big rename

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Mon Dec 25 14:43:23 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.32: +0 -3 lines
Diff to previous 1.32
interim.checkin

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Mon Dec 25 11:25:49 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.31: +6 -2 lines
Diff to previous 1.31
- small, but subtle, rewrite of object management
- perl will now keep attachable objects alive
- objects are now refcounted
- refcouts need to be tested explicitly (refcnt_chk)
- explicit destroy is required current
- explicit destroy asks "nicely" for the object to self destruct, if possible
- refcounts will be used during mortal killing
- minor bugfixes, optimisations etc.
- some former hacks removed.

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Thu Dec 21 01:33:49 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.30: +11 -2 lines
Diff to previous 1.30
- reduce map memory consumption by reserving space for only the 3 existing layers
- factorise out some functions into mapspace and object

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Wed Dec 20 11:36:39 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.29: +33 -21 lines
Diff to previous 1.29
- mapspace caches are now reevaluated only on-demand only
- "heavily" optimised get_map_flags - it might be MUCH faster now
- some cleanups
- some deoptimisaton in update_object - enabling it makes some
  bigfaces disappear when they are not fully visible. why?

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Wed Dec 20 09:14:22 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.28: +51 -68 lines
Diff to previous 1.28
- minor cleanups
- minor optimisations (in_player vs. is_player_inv)
- added P_PLAYER map flag
- some (dead) concept code

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Fri Dec 15 20:08:45 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.27: +1 -1 lines
Diff to previous 1.27
I goofed.

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Fri Dec 15 20:07:02 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.26: +1 -1 lines
Diff to previous 1.26
more slight copyright adjustments

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Wed Dec 13 02:55:50 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.25: +1 -2 lines
Diff to previous 1.25
- medium decruftification
- medium cleanups
- make settings accessible to perl using cf::settings->mutator
  (completely untested)

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Mon Dec 11 18:41:32 2006 UTC (17 years, 6 months ago) by pippijn
Branch: MAIN
Changes since 1.24: +1 -1 lines
Diff to previous 1.24
sint64 shopmax too

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Mon Dec 11 14:28:12 2006 UTC (17 years, 6 months ago) by pippijn
Branch: MAIN
Changes since 1.23: +1 -1 lines
Diff to previous 1.23
- removed or commented out unused variables
- fixed one signedness issue (should work.. uint64 to sint64.. just
      what about the shopmax still being uint64?)

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Sun Dec 3 02:04:57 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.22: +3 -0 lines
Diff to previous 1.22
move objects onto a special freed objects map (2)

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Sun Dec 3 01:11:23 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.21: +2 -1 lines
Diff to previous 1.21
*** empty log message ***

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Sat Sep 16 22:24:12 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.20: +5 -5 lines
Diff to previous 1.20
mapstruct => maptile
removed many ytypedefs in favor of structure tags

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Sat Sep 16 22:06:17 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.19: +126 -130 lines
Diff to previous 1.19
indent

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Fri Sep 8 16:51:44 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.18: +51 -48 lines
Diff to previous 1.18
generic accessors, take one

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Fri Sep 8 12:56:43 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.17: +4 -3 lines
Diff to previous 1.17
c++ification

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Sun Sep 3 00:18:41 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.16: +1 -1 lines
Diff to previous 1.16
THIS CODE WILL NOT COMPILE
use the STABLE tag instead.

- major changes in object lifetime and memory management
- replaced manual refcounting by shstr class
- removed quest system
- many optimisations
- major changes

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Thu Aug 31 09:19:34 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.15: +0 -2 lines
Diff to previous 1.15
*** empty log message ***

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Tue Aug 29 09:35:52 2006 UTC (17 years, 9 months ago) by elmex
Branch: MAIN
Changes since 1.14: +0 -1 lines
Diff to previous 1.14
removed safe_map

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Tue Aug 29 09:27:58 2006 UTC (17 years, 9 months ago) by elmex
Branch: MAIN
Changes since 1.13: +1 -1 lines
Diff to previous 1.13
fixed comment about P_SAFE

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Tue Aug 29 08:01:36 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.12: +16 -16 lines
Diff to previous 1.12
expand initial tabs to spaces

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Mon Aug 28 14:05:24 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.11: +0 -1 lines
Diff to previous 1.11
improved,more automatic freezer

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Sun Aug 27 17:59:26 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.10: +1 -1 lines
Diff to previous 1.10
fixes, objects on maps get instantiated properly

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Sun Aug 27 16:15:12 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.9: +1 -1 lines
Diff to previous 1.9
first, untested persistent objetc storage for players and objects, not yte for maps

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Sat Aug 26 08:44:06 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.8: +5 -5 lines
Diff to previous 1.8
many, many cleanups

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Tue Aug 15 17:35:50 2006 UTC (17 years, 10 months ago) by elmex
Branch: MAIN
Changes since 1.7: +5 -5 lines
Diff to previous 1.7
removed P_SAFE_MAP and added P_SAFE as map flag set by an item with type SAFE_FLOOR (165)

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Tue Aug 15 15:00:20 2006 UTC (17 years, 10 months ago) by elmex
Branch: MAIN
Changes since 1.6: +6 -0 lines
Diff to previous 1.6
added a safe_map flag which prevents bad effects on maps that should be
safe, like some shops and for example the trade shop in scorn.

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Sun Aug 13 17:16:02 2006 UTC (17 years, 10 months ago) by elmex
Branch: MAIN
Changes since 1.5: +20 -20 lines
Diff to previous 1.5
Made server compile with C++.
Removed cfanim plugin and crossedit.
C++ here we come.

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Tue Mar 7 13:44:43 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: LAST_C_VERSION, difficulty_fix_merge_060810_2300
Branch point for: difficulty_fix
Changes since 1.4: +1 -0 lines
Diff to previous 1.4
*** empty log message ***

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Mon Mar 6 22:59:26 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.3: +3 -0 lines
Diff to previous 1.3
*** empty log message ***

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Wed Feb 22 18:53:48 2006 UTC (18 years, 3 months ago) by elmex
Branch: MAIN
Changes since 1.2: +3 -0 lines
Diff to previous 1.2
UPSTREAM_2006-02-22 merge

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Tue Feb 21 11:00:07 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.1: +2 -2 lines
Diff to previous 1.1
*** empty log message ***

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Fri Feb 3 07:12:49 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Branch point for: UPSTREAM
Initial revision

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