ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/socket/item.C
Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Mon Apr 23 19:10:17 2007 UTC (17 years, 1 month ago) by root
Branch: MAIN
CVS Tags: rel-2_1
Changes since 1.43: +32 -18 lines
Diff to previous 1.43
implement ex command support to quickly retrieve item descriptions

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Tue Apr 3 00:21:38 2007 UTC (17 years, 2 months ago) by root
Branch: MAIN
Changes since 1.42: +3 -0 lines
Diff to previous 1.42
- fix ber encoding
- reduce image checksum length to 6 bytes (from 16)
- implement fx packet, which reduces
  face overhead to amortised 10/12 bytes per face instead of
  21/32 bytes and allows an unlimited number of faces
  instead of 2**16.

Revision 1.42 - (view) (download) (annotate) - [select for diffs]
Wed Mar 14 00:04:59 2007 UTC (17 years, 2 months ago) by root
Branch: MAIN
Changes since 1.41: +4 -8 lines
Diff to previous 1.41
- rewrote smooth face handling, as a side-effect, smoothing seems to work
  again and smooth faces can be reloaded.
- the server now sends the full animation for an object the first time
  it is seen, this uses slightly more bandwidth initially, but avoids
  the flickering for objects change their face later.

Revision 1.41 - (view) (download) (annotate) - [select for diffs]
Sun Mar 11 02:12:45 2007 UTC (17 years, 2 months ago) by root
Branch: MAIN
Changes since 1.40: +10 -10 lines
Diff to previous 1.40
- 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.40 - (view) (download) (annotate) - [select for diffs]
Thu Mar 1 12:28:17 2007 UTC (17 years, 3 months ago) by pippijn
Branch: MAIN
CVS Tags: rel-2_0
Changes since 1.39: +0 -1 lines
Diff to previous 1.39
nano-cleanups

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Mon Feb 26 20:36:15 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.38: +1 -1 lines
Diff to previous 1.38
*** empty log message ***

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Sat Feb 10 21:01:10 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.37: +0 -2 lines
Diff to previous 1.37
- avoid floorbox updates when client has container open, this
  completely confused gcfclient, although completely valid by
  the protocol (and of course, cfplus didn't even notice it).

Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Sat Feb 10 01:52:29 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
Changes since 1.36: +0 -2 lines
Diff to previous 1.36
hell on earth, rewrote the container code
- it really was a mess before
- open/close events should now be very reliable.
- make container an object_ptr, just to be on the safe side
  (the old code is known to crash, the new code should be reliable, but...).
- its also smaller, much smaller/clearer in sourcecode size and a bit
  smaller in text segment size.

also disable big worldmap again: is this still causing memleaks?

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Sun Feb 4 17:51:12 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.35: +3 -0 lines
Diff to previous 1.35
mroe cheks on disconnected socket

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Sun Jan 21 21:28:27 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.34: +7 -7 lines
Diff to previous 1.34
mark watchers as reentrant, some FABS => fabs

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Mon Jan 15 02:39:41 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.33: +3 -0 lines
Diff to previous 1.33
- fix crash bug
- better fork & abort (untested)

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Fri Jan 12 01:29:13 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.32: +3 -0 lines
Diff to previous 1.32
emergency workaround

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Tue Jan 9 21:32:43 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.31: +33 -38 lines
Diff to previous 1.31
- 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.31 - (view) (download) (annotate) - [select for diffs]
Mon Jan 8 18:18:36 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.30: +7 -3 lines
Diff to previous 1.30
- move most last_* values into socket, where they belong
- this actually saved a lot of space in the text segment,
  which might mean less complicated pointer accesses, because
  the data is no where it belongs, mostly.

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Sat Jan 6 14:42:31 2007 UTC (17 years, 5 months ago) by pippijn
Branch: MAIN
Changes since 1.29: +1 -0 lines
Diff to previous 1.29
added some copyrights

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Thu Dec 21 23:37:06 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.28: +34 -34 lines
Diff to previous 1.28
- made state a per-client variable
  (that does not magically make state a per-client thing!)
- rename player->socket to player->ns. its not a good name for "client",
  but it is an historical artifact, and better than "socket".

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: +143 -3 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]
Wed Dec 20 01:19:11 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.26: +7 -12 lines
Diff to previous 1.26
some source simplification

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Tue Dec 19 05:41:22 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.25: +6 -6 lines
Diff to previous 1.25
goofing around in vain, trying to find a generalisation for esrv*item

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Tue Dec 19 05:12:52 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.24: +2 -2 lines
Diff to previous 1.24
- hide floorbox implementation details
- use meaning (hopefully) names

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Sat Dec 16 22:14:42 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.23: +41 -46 lines
Diff to previous 1.23
just reformats

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Fri Dec 15 19:59:20 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.22: +1 -3 lines
Diff to previous 1.22
the rename for sanity campaign hits
you died
- renamed stuff
- partially updated copyrights
- some cleanups

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Fri Dec 15 03:53:44 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.21: +4 -4 lines
Diff to previous 1.21
streamlined packet processing a bit, experimentally enabled more immediate paclets

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Fri Dec 15 00:34:17 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.20: +9 -10 lines
Diff to previous 1.20
fix bug

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Thu Dec 14 20:39:54 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.19: +8 -8 lines
Diff to previous 1.19
- implement c++ interface to Event->io watchers
- cut number of write()'s the server does in half

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Thu Dec 14 04:30:33 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.18: +34 -34 lines
Diff to previous 1.18
- rewrote most of the socket loop code
- moved connection accept into tcp.ext
- no evil socket copying anymore,
  needs more cleanups

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Thu Dec 14 02:37:37 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.17: +1 -1 lines
Diff to previous 1.17
moar\! rewrite\!

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Thu Dec 14 01:59:10 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.16: +5 -4 lines
Diff to previous 1.16
rewrite phase one finished

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Thu Dec 14 01:21:58 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.15: +7 -12 lines
Diff to previous 1.15
moar rewrite

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Thu Dec 14 01:12:35 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.14: +1 -1 lines
Diff to previous 1.14
(intermediate check-in for recoverability)

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Thu Dec 14 00:23:59 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.13: +58 -83 lines
Diff to previous 1.13
moar rewrite

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Thu Dec 14 00:13:26 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.12: +54 -45 lines
Diff to previous 1.12
(intermediate check-in for recoverability)

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Thu Dec 14 00:01:37 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.11: +8 -13 lines
Diff to previous 1.11
- further cleanup and rewrite
- fix a potential crash in "lock" and "mark" packets

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Wed Dec 13 21:27:09 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.10: +4 -0 lines
Diff to previous 1.10
continued simplifying network code, partially removed support for sc protocol 1026

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Wed Sep 27 00:36:09 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.9: +11 -3 lines
Diff to previous 1.9
* nuke op->contr when players log out, to avoid dereferencing them later :(
* also rename free to destroy
* do not create weird messages when people examine pseudo inventory objects

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Wed Sep 20 21:53:50 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.8: +2 -1 lines
Diff to previous 1.8
added many accessors and mutators to struct player, including *title* and (hint, hint) *own_title*

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

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Thu Sep 14 22:34:05 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.6: +1 -1 lines
Diff to previous 1.6
indent

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Tue Sep 12 19:20:09 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.5: +0 -6 lines
Diff to previous 1.5
- improve assign to prepend "..."
- make more use of assign
- implement op->debug_desc() and make some more use of it

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Sun Sep 10 13:43:33 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.4: +632 -542 lines
Diff to previous 1.4
indent

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Sun Sep 3 00:18:43 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.3: +6 -10 lines
Diff to previous 1.3
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.3 - (view) (download) (annotate) - [select for diffs]
Tue Aug 29 08:01:38 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.2: +283 -283 lines
Diff to previous 1.2
expand initial tabs to spaces

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Tue Aug 29 07:34:01 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.1: +18 -46 lines
Diff to previous 1.1
nuke transports

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Sun Aug 13 17:16:06 2006 UTC (17 years, 9 months ago) by elmex
Branch: MAIN
Made server compile with C++.
Removed cfanim plugin and crossedit.
C++ here we come.

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