ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/libproto.h
Revision 1.40 - (view) (download) (annotate) - [select for diffs]
Fri Feb 16 19:43:41 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-2_0
Changes since 1.39: +0 -19 lines
Diff to previous 1.39
- 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.39 - (view) (download) (annotate) - [select for diffs]
Wed Feb 7 02:04:46 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.38: +1 -1 lines
Diff to previous 1.38
rework material code in preparation for nuking object->materials, also add some useful object methods in preparation of the mapspace limiting

Revision 1.38 - (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.37: +0 -1 lines
Diff to previous 1.37
rewrote region parser, changed region fileformat a bit

Revision 1.37 - (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.36: +0 -9 lines
Diff to previous 1.36
partial region cleanup

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Thu Jan 18 19:32:37 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.35: +0 -1 lines
Diff to previous 1.35
just experimenting

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Mon Jan 15 01:39:42 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.34: +0 -1 lines
Diff to previous 1.34
more micro-optimisation, use idistance, min is faster than MIN

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Mon Jan 15 01:25:41 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.33: +0 -1 lines
Diff to previous 1.33
- faster implementation for isqrt
- add fast idistance approximation

now find_dir_2 has moved to the top of the profiling output for
mlab/cwdccastleofmarquis3, followed by get_rangevector, hit_map
and ok_to_put_more.

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Mon Jan 15 00:40:49 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.32: +1 -13 lines
Diff to previous 1.32
- 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.32 - (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.31: +0 -22 lines
Diff to previous 1.31
preliminary snapshot check-in, DO NOT USE IN PRODUCTION SYSTEMS
See the Changes file for details

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Tue Dec 26 08:54:59 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.30: +0 -1 lines
Diff to previous 1.30
replace update_ob_speed by ->set_speed

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Fri Dec 22 16:34:00 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.29: +0 -6 lines
Diff to previous 1.29
- preliminary check in, stuff is rudimentarily working
- moved most of the player creation process into a perl coroutine
- changed internal design of player management to not reuse
  and morph the object in funny ways. should be safer and much
  nicer to handle.
- got rid of some annoying hacks, such as clear()
  (TODO: get rid of player_pod and other stuff now unnecessary?)

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Wed Dec 20 11:36:39 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.28: +0 -1 lines
Diff to previous 1.28
- 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.28 - (view) (download) (annotate) - [select for diffs]
Wed Dec 20 09:14:22 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.27: +0 -1 lines
Diff to previous 1.27
- minor cleanups
- minor optimisations (in_player vs. is_player_inv)
- added P_PLAYER map flag
- some (dead) concept code

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Tue Dec 19 15:30:01 2006 UTC (17 years, 5 months ago) by elmex
Branch: MAIN
Changes since 1.26: +1 -1 lines
Diff to previous 1.26
reverted the last change to move_apply and check_inv and fixed check_inv
differntly: as all the buttons and pedestals check themselves whether
the objects above them satisfy their conditions i thought the best
would be if check_inv would do the same. The new semantics are
compatible with the semantics used by the map makers (at least i hope that)
and won't end up in a broken state so easily now.

While fixing check_inv i documented inventory checkers in objects.pod

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Tue Dec 19 13:41:45 2006 UTC (17 years, 5 months ago) by elmex
Branch: MAIN
Changes since 1.25: +1 -1 lines
Diff to previous 1.25
Added a parameter to move_apply that indicates whether something
moved on or off and changed check_inv to take the same additional argument.
An inventory checker is now mostly state-independend and a bad state
is corrected now if the inventory checker is activated.

While fixing that i've documented the HOLE type and FLAG_ACTIVATE_ON_(PUSH|RELEASE)
in objects.pod.

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Fri Dec 15 00:14:12 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.24: +0 -3 lines
Diff to previous 1.24
- make client_socket accessible to perl
- on linux, record rtt and rttvar
- who shows rtt/rttvar

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Thu Dec 14 22:45:40 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.23: +2 -2 lines
Diff to previous 1.23
- implement event watcher autoncancellation on reload
- used it everywhere
- removed lots of compatibility cruft
  - configure does no longer check for mandatory unix functionality/headers
  - confgiure now runs much faster

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

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Tue Dec 12 21:39:56 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.21: +0 -1 lines
Diff to previous 1.21
- more ooficiation
- removed now superfluous remove calls

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Tue Dec 12 20:53:03 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.20: +0 -1 lines
Diff to previous 1.20
replace some function- by method-calls

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Sat Dec 9 17:28:37 2006 UTC (17 years, 5 months ago) by pippijn
Branch: MAIN
Changes since 1.19: +0 -2 lines
Diff to previous 1.19
removed regex comparison. this is now done with perl

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

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Tue Nov 7 16:30:55 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.17: +1 -3 lines
Diff to previous 1.17
re-implement dump and dumpbelow

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

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Thu Sep 14 23:13:48 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.15: +0 -1 lines
Diff to previous 1.15
replace was_destroyed by much simpler and less expensive ->destroyed,
which is valid, as objetc pointers are now reliable.

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Thu Sep 14 21:16:12 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.14: +0 -1 lines
Diff to previous 1.14
cleanup

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Mon Sep 11 20:28:37 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.13: +0 -6 lines
Diff to previous 1.13
implement owner pointer using refcounted refptr templates

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Sat Sep 9 21:48:28 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.12: +0 -2 lines
Diff to previous 1.12
fix a few ugly pod-constructs on non-pod objects, and a few newly introduced bugs

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Fri Sep 8 17:14:07 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.11: +0 -2 lines
Diff to previous 1.11
genaccess, take two

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Mon Sep 4 16:46:32 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.10: +0 -1 lines
Diff to previous 1.10
major map loading speedups

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Mon Sep 4 11:07:59 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.9: +0 -4 lines
Diff to previous 1.9
Changes...

- alternative shstr representation, saves code
- use glibs splice memory allocator (seems slower)
- use simpler memory/lifetime management for objects, no recycling

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Sun Sep 3 22:45:56 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.8: +1 -1 lines
Diff to previous 1.8
string scanning (e.g. for patch) is not implemented ATM but should be easy
to add with an alternative constructor for object_thawer.

Rewrote flex scanner to be simpler, faster and more modularised.

Initial speedup: 16%

(ah well)

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Sun Sep 3 00:18:41 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.7: +0 -10 lines
Diff to previous 1.7
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.7 - (view) (download) (annotate) - [select for diffs]
Wed Aug 30 16:30:37 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.6: +0 -3 lines
Diff to previous 1.6
remove compression support, intiialise perl earlier etc. etc.

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Tue Aug 29 17:29:28 2006 UTC (17 years, 9 months ago) by elmex
Branch: MAIN
Changes since 1.5: +4 -2 lines
Diff to previous 1.5
rewrote parts of the connection code, which now is completly perl
invoke- and overrideable.

Revision 1.5 - (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.4: +4 -6 lines
Diff to previous 1.4
improved,more automatic freezer

Revision 1.4 - (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.3: +4 -4 lines
Diff to previous 1.3
first, untested persistent objetc storage for players and objects, not yte for maps

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Wed Aug 9 15:57:27 2006 UTC (17 years, 9 months ago) by elmex
Branch: MAIN
CVS Tags: LAST_C_VERSION, difficulty_fix_merge_060810_2300
Branch point for: difficulty_fix
Changes since 1.2: +1 -1 lines
Diff to previous 1.2
redone formula for level calculation of rods, staffs, wands and scrolls

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Sun May 7 13:56:22 2006 UTC (18 years ago) by root
Branch: MAIN
Changes since 1.1: +90 -78 lines
Diff to previous 1.1
distconf

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

Convenience Links

Links to HEAD: (view) (download) (annotate) Links to rel-2_0: (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