Directory Statistics for include/

Back to Index Page

Lines Of Code for include/

Commits for include/ (per author)

AuthorRevisionsLines of CodeAdded Lines of CodeLines of Code per Change
mwedel248 (23.6%) 1016 (11.6%) 5027 (27.7%) 4.10
ryo_saeba123 (11.7%) 81 (0.9%) 597 (3.3%) 0.66
garbled123 (11.7%) 201 (2.3%) 684 (3.8%) 1.63
cvs111 (10.6%) 384 (4.4%) 839 (4.6%) 3.46
michtoen78 (7.4%) 404 (4.6%) 782 (4.3%) 5.18
akirschbaum66 (6.3%) 81 (0.9%) 431 (2.4%) 1.23
gros49 (4.7%) -114 (-1.3%) 923 (5.1%) -2.33
peterm46 (4.4%) 72 (0.8%) 233 (1.3%) 1.57
tchize44 (4.2%) 418 (4.8%) 1025 (5.7%) 9.50
uid20039 (3.7%) 6054 (69.2%) 6056 (33.4%) 155.23
cavesomething28 (2.7%) 67 (0.8%) 90 (0.5%) 2.39
damn21 (2.0%) 100 (1.1%) 1222 (6.7%) 4.76
temitchell14 (1.3%) 6 (0.1%) 36 (0.2%) 0.43
jec13 (1.2%) 25 (0.3%) 67 (0.4%) 1.92
avogl13 (1.2%) -86 (-1.0%) 37 (0.2%) -6.62
qal2112 (1.1%) 11 (0.1%) 25 (0.1%) 0.92
darth_bob5 (0.5%) 5 (0.1%) 25 (0.1%) 1.00
mardahl4 (0.4%) 2 (0.0%) 6 (0.0%) 0.50
pcurrlin3 (0.3%) 4 (0.0%) 10 (0.1%) 1.33
majorwoo3 (0.3%) 5 (0.1%) 7 (0.0%) 1.67

Commit Log

DateAuthorFile/Message
2/27/06 2:06 PMakirschbaum
Apply patch by Marc Alexander Lehmann to improve server performance. (1 Files changed, 2 Lines changed)
include/map.h 1.36 (+2 -2)
2/26/06 4:09 AMryo_saeba
Win32 1.9.0 release (1 Files changed, 1 Lines changed)
include/win32.h 1.24 (+1 -1)
2/22/06 3:47 AMakirschbaum
Remove object type CONFUSION since it was not used anymore. (1 Files changed, 2 Lines changed)
include/define.h 1.106 (+2 -2)
2/19/06 8:29 AMakirschbaum
Prevent crossedit from stripping out 'maplore' map header field. (1 Files changed, 2 Lines changed)
include/map.h 1.35 (+2 -1)
2/17/06 3:29 PMakirschbaum
Apply patch #1433271 (code-cleanup) by Stefan Huehner: Add const and static. (2 Files changed, 4 Lines changed)
include/sproto.h 1.165 (+2 -4)
include/libproto.h 1.89 (+2 -6)
2/15/06 2:37 PMryo_saeba
Commit forgotten file (1 Files changed, 1 Lines changed)
include/plugin.h 1.22 (+1 -0)
2/10/06 5:59 PMakirschbaum
Apply slightly modified patch #1428309 (code-cleanup: const, static) by
Stefan Huehner: add const/static to functions/variables. Remove some type
casts.
(6 Files changed, 25 Lines changed)
include/object.h 1.46 (+4 -4)
include/libproto.h 1.88 (+1 -2)
include/sockproto.h 1.24 (+5 -6)
include/sproto.h 1.164 (+8 -12)
include/spells.h 1.21 (+2 -2)
include/attack.h 1.14 (+5 -5)
2/8/06 6:48 PMakirschbaum
Apply patch #1427979 (code-cleanup: add const, fix warnings) by Stefan
Huehner.
(1 Files changed, 72 Lines changed)
include/libproto.h 1.87 (+72 -69)
2/8/06 5:53 PMakirschbaum
Make create food spell work for all FOOD/DRINK objects. It used to fail for
objects where another object with the same name but type POISON does exist.
(1 Files changed, 1 Lines changed)
include/libproto.h 1.86 (+1 -0)
2/8/06 3:41 PMryo_saeba
Add DM command insert_into <where> <what> (1 Files changed, 1 Lines changed)
include/sproto.h 1.163 (+1 -0)
2/7/06 7:52 PMcavesomething
add arrest command, and regional jails (3 Files changed, 5 Lines changed)
include/sproto.h 1.162 (+1 -0)
include/map.h 1.34 (+3 -1)
include/libproto.h 1.85 (+1 -0)
2/7/06 1:54 AMmwedel
Code that adds transports. Transports are described more in detail in
docs/Developers/objects.
---
loader.l: Add new move type ('boat'). Update move_name field to be aware of
this type.
common/object.c: Unrelated to transport, but more apparant with transports -
fix bug with insert_ob_in_map() and multipart objects - we now only
try to fix up map and coordinates if the provided coordinates are
out of the map. Before, function would always use the passed
map for multipart objects, which is incorrect if we have already
set valid coordinates.
doc/Developers/objects: Update notes for TRANSPORTS. Update move
information to include MOVE_BOAT.
include/define.h: Add type TRANSPORT. Add MOVE_BOAT.
include/player.h: Add transport field to player structure.
include/sproto.h: rebuilt.
server/apply.c: Add code to handle applying of transports. Update
apply_below to apply transport if player is on one.
server/attack.c: Update hit_map() to look for transports, and hit any
players with the damage.
server/c_object.c: Update put_object_in_sack() to also handle TRANSPORTS
so that code can be re-used.
server/move.c: Fix handling of multipart objects in move_object() -
old code didn't work right with multipart objects moving along seams
of tiled maps. Add code to move_ob() to update player map position
for all players in a moving transport.
server/player.c: Update move_player_attack() too check of player is
in tranport, and use that for map and location information. Update
move_player() to handle speed related issues with transports.
server/time.c: Add code to credit time back to TRANSPORT objects since
we remove time in move_player() for TRANSPORTS.
socket/item.c: Add add_object_to_socklist() so that same code isn't
reproduced in 3 different places in the file. Update draw_look()
to handle transports - send transport object itself, then objects
in transport. Update esrv_send_inventory() and esrv_send_item()
to use add_object_to_socklist(). Update esrv_get_ob_from_count() to look
for objects in transport if player is in transport.
socket/loop.c: Remove checking of pl->map status, since draw_client_map()
does that, and we need to handle if the player is in a transport.
socket/request.c: Handle map drawing if player is in a transport.
MSW 2006-02-06
(3 Files changed, 24 Lines changed)
include/sproto.h 1.161 (+17 -15)
include/player.h 1.46 (+3 -2)
include/define.h 1.105 (+4 -3)
2/4/06 11:27 PMmwedel
movement type changes. Add move_allow field to explicitly allow certain
movement types on spaces. Add suppport for using string names instead
of numeric values to specify the MOVE_ values. Add code so when saving
data out, use string names instead of numeric value.
---
common/loader.l: Remove save_double(), as it isn't used by any code.
Add set_move() to set movement types from strings.
Add get_string_move_type, which takes integer movement type and
returns a string. Update load and save code to use these functions
respectively.
common/map.c: Change blocked_link() so that we only examine all the objects
on a space if there is something alive on the space or space is otherwise
blocked. There is no reason to examine all the objects on the space if
the object in question can move onto it.
Modify update_position() to use the move_allow field to clear bits
in the move_block field.
common/object.c: Add check in CAN_MERGE for move_allow. Add check for
move_allow in update_object to see if we should update the space or
not.
doc/Developers/objects: Update Movement code section to note use of using
strings to set movement types. Add note about move_allow. Section
about Transports added, but code isn't there yet.
include/object.h: Add move_allow to object structure.
MSW 2006-02-04
(1 Files changed, 2 Lines changed)
include/object.h 1.45 (+2 -1)
1/30/06 11:00 AMcavesomething
prevent unlimited login attempts by dropping the connection after too many password failures. Document the itemcmd setup flag, and improve that for the item and item2 commands (1 Files changed, 5 Lines changed)
include/newserver.h 1.37 (+5 -1)
1/9/06 1:35 PMcavesomething
spell listing support (6 Files changed, 23 Lines changed)
include/newserver.h 1.36 (+2 -1)
include/sproto.h 1.160 (+1 -1)
include/player.h 1.45 (+5 -2)
include/newclient.h 1.12 (+9 -1)
include/sockproto.h 1.23 (+4 -0)
include/funcpoint.h 1.16 (+2 -1)
1/8/06 4:40 PMqal21
Fix stray commas at the end of enums (detection thanks to paranoid CFLAGS ;P) (2 Files changed, 5 Lines changed)
include/define.h 1.104 (+2 -2)
include/player.h 1.44 (+3 -3)
1/8/06 3:30 PMakirschbaum
include/newserver.h, socket/{init.c,request.c}: Remove unused fields ext2 and
ext_title_flag from NewSocket structure.
(1 Files changed, 1 Lines changed)
include/newserver.h 1.35 (+1 -3)
1/8/06 10:31 AMakirschbaum
Apply modified patch #1396303 (add setting to disable stealing from players)
by Terry Brown. It adds a new option "no_player_stealing" to the settings
file. If set, it prevents players from stealing from other players. It
defaults to ON.
(1 Files changed, 2 Lines changed)
include/global.h 1.62 (+2 -1)
1/7/06 12:18 PMakirschbaum
Fix comment. (1 Files changed, 2 Lines changed)
include/define.h 1.103 (+2 -2)
1/7/06 11:41 AMryo_saeba
Regions support for plugins (3 Files changed, 19 Lines changed)
include/plugproto.h 1.10 (+0 -82)
include/sproto.h 1.159 (+11 -11)
include/plugin.h 1.21 (+8 -0)