Directory server/trunk/common/

Total Files:
38
Deleted Files:
4
Lines of Code:
28395

[root]/server/trunk/common

Lines of Code

server/trunk/common/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 1551 (100.0%) 41105 (100.0%) 26.5
ryo_saeba 596 (38.4%) 23219 (56.5%) 38.9
akirschbaum 389 (25.1%) 10234 (24.9%) 26.3
anmaster 156 (10.1%) 3601 (8.8%) 23.0
mwedel 111 (7.2%) 1552 (3.8%) 13.9
partmedia 188 (12.1%) 1167 (2.8%) 6.2
silvernexus 35 (2.3%) 448 (1.1%) 12.8
gros 19 (1.2%) 328 (0.8%) 17.2
tchize 4 (0.3%) 197 (0.5%) 49.2
quinet 31 (2.0%) 172 (0.4%) 5.5
aaron_baugher 1 (0.1%) 126 (0.3%) 126.0
kbulgrien 9 (0.6%) 28 (0.1%) 3.1
lalo 1 (0.1%) 11 (0.0%) 11.0
cavesomething 1 (0.1%) 8 (0.0%) 8.0
qal21 4 (0.3%) 6 (0.0%) 1.5
kstenger 4 (0.3%) 4 (0.0%) 1.0
buzzsawddog 2 (0.1%) 4 (0.0%) 2.0

Most Recent Commits

silvernexus 2018-09-24 15:43 Rev.: 20588

Fix an error when trying to examine a mimic when it is disguised.

1 lines of code changed in 1 file:

  • server/trunk/common: item.c (+1)
silvernexus 2018-05-28 21:36 Rev.: 20571

Fix bug #823: Serpentmen don't get additional AC when multiple bracers are equipped

23 lines of code changed in 1 file:

  • server/trunk/common: living.c (+23 -2)
silvernexus 2018-05-28 16:30 Rev.: 20570

Simplify code for detrmining AC/WC on bracers and armor.
Should be functionally equivalent to prior code.

6 lines of code changed in 1 file:

  • server/trunk/common: living.c (+6 -8)
silvernexus 2018-02-11 01:10 Rev.: 20558

Refactor get_map_from_coord to be iterative, rather than recursive.
Also, some whitespace changes in out_of_map.

72 lines of code changed in 1 file:

  • server/trunk/common: map.c (+72 -61)
silvernexus 2018-01-23 18:06 Rev.: 20552

Reduce calls to realloc in animation loading by doubling size per realloc instead of adding ten.
Also fix improper handling of a failed realloc identified by CppCheck.

29 lines of code changed in 1 file:

  • server/trunk/common: anim.c (+29 -3)
silvernexus 2018-01-21 11:46 Rev.: 20549

Fix incorrect date in comment from r20548.

1 lines of code changed in 1 file:

  • server/trunk/common: init.c (+1 -1)
silvernexus 2018-01-21 11:36 Rev.: 20548

Adjust attack message intialization to support tabs as whitespace and use strspn to reduce additional overhead from adding tabs.

9 lines of code changed in 1 file:

  • server/trunk/common: init.c (+9 -3)
silvernexus 2018-01-17 21:22 Rev.: 20545

Merge redundant variable assignments in for loop in fix_player.\nIdentified by CppCheck.

1 lines of code changed in 1 file:

  • server/trunk/common: living.c (+1 -3)
silvernexus 2018-01-09 14:17 Rev.: 20539

Fix segfault from trying to copy data on an identified item without op->arch.\n Fixes bug #844

2 lines of code changed in 1 file:

  • server/trunk/common: artifact.c (+2 -1)
silvernexus 2018-01-08 21:05 Rev.: 20538

Add identified image handling to items that start identified but are in a type that can be identifiable.

5 lines of code changed in 1 file:

  • server/trunk/common: artifact.c (+5 -1)
silvernexus 2018-01-07 22:19 Rev.: 20537

Make artifacts of types that do not need identifying use identified face and animation.

10 lines of code changed in 1 file:

  • server/trunk/common: artifact.c (+10)
silvernexus 2018-01-04 19:01 Rev.: 20536

Change player_lvl_adj() to use loops instead of recursion.

29 lines of code changed in 1 file:

  • server/trunk/common: living.c (+29 -28)
silvernexus 2017-08-23 21:51 Rev.: 20502

Add messages and flag for paralysis, allowing for smarter handling of paralysis in the future.
Also disallow eating food when starving and paralyzed, since it is incogruous to do so.

1 lines of code changed in 1 file:

  • server/trunk/common: loader.l (+1)
silvernexus 2017-08-09 21:27 Rev.: 20480

Patch bug #648: item power ignored from certain items.

31 lines of code changed in 1 file:

  • server/trunk/common: living.c (+31 -20)
silvernexus 2017-08-05 22:45 Rev.: 20474

Fix animation setting for firewalls.

7 lines of code changed in 1 file:

  • server/trunk/common: button.c (+7 -1)
silvernexus 2017-08-05 22:25 Rev.: 20473

Fix rotation of turnable firewalls.

9 lines of code changed in 1 file:

  • server/trunk/common: button.c (+9 -3)
partmedia 2017-07-31 16:20 Rev.: 20463

Fix comparison

1 lines of code changed in 1 file:

  • server/trunk/common: map.c (+1 -1)
partmedia 2017-07-29 14:37 Rev.: 20459

Fix stack buffer overflow in map lore loader

5 lines of code changed in 1 file:

  • server/trunk/common: map.c (+5 -1)
partmedia 2017-05-28 00:00 Rev.: 20360

Remove redundant memset() after calloc()

1 lines of code changed in 1 file:

  • server/trunk/common: region.c (+1 -5)
partmedia 2017-01-17 11:44 Rev.: 20327

Split random functions into its own file

This makes it possible for plugins to share the cf_random() function
without bringing in all the other symbols required in porting.c.

25 lines of code changed in 3 files:

  • server/trunk/common: Makefile.am (+1), cf_random.c (new 24), porting.c (-20)
partmedia 2016-08-12 23:02 Rev.: 20314

Fix signed integer comparisons

8 lines of code changed in 3 files:

  • server/trunk/common: readable.c (+4 -4), treasure.c (+1 -2), utils.c (+3 -3)
partmedia 2016-08-12 23:02 Rev.: 20313

Convert fatal error codes to enum

2 lines of code changed in 1 file:

  • server/trunk/common: utils.c (+2 -8)
partmedia 2016-08-12 23:01 Rev.: 20310

Remove unused variable

0 lines of code changed in 1 file:

  • server/trunk/common: item.c (-2)
partmedia 2016-08-12 23:01 Rev.: 20306

Remove superfluous return statements

Reported by: Andreas Kirschbaum

3 lines of code changed in 1 file:

  • server/trunk/common: porting.c (+3 -3)
partmedia 2016-08-12 23:01 Rev.: 20305

Fix sign extension by using unsigned cast

Reported by: Coverity Scan

6 lines of code changed in 1 file:

  • server/trunk/common: map.c (+6 -1)
partmedia 2016-08-03 19:30 Rev.: 20301

Fix overflows by using calloc() correctly

3 lines of code changed in 3 files:

  • server/trunk/common: loader.l (+1 -1), map.c (+1 -1), object.c (+1 -1)
partmedia 2016-08-03 19:30 Rev.: 20297

Convert randomness macros to functions

Each function that the randomness macros call returns a different type.
Explicitly declare a cf_random() and cf_srandom().

20 lines of code changed in 1 file:

  • server/trunk/common: porting.c (+20)
silvernexus 2016-06-03 00:01 Rev.: 20282

Adjust null pointer tile map checks in out_of_map() and get_map_from_coord() to only occur after an attempted load.

32 lines of code changed in 1 file:

  • server/trunk/common: map.c (+32 -32)
silvernexus 2016-05-23 22:46 Rev.: 20278

Fix potential segfault in out_of_map() and get_map_from_coord() from unchecked use of nullable struct.

26 lines of code changed in 1 file:

  • server/trunk/common: map.c (+26 -13)
silvernexus 2016-05-21 14:27 Rev.: 20272

Compact malloc()+memset(0) into a calloc().

5 lines of code changed in 1 file:

  • server/trunk/common: player.c (+5 -2)
silvernexus 2016-05-21 00:26 Rev.: 20270

Optimize set_wall() to reduce recursion overhead.

15 lines of code changed in 1 file:

  • server/trunk/common: los.c (+15 -10)
silvernexus 2016-05-18 10:23 Rev.: 20266

Optimize out newx and newy from get_map_flags().

8 lines of code changed in 1 file:

  • server/trunk/common: map.c (+8 -7)
silvernexus 2016-05-18 09:27 Rev.: 20265

Remove an extra call to memset that didn't accomplish anything that calloc() didn't already do.

11 lines of code changed in 1 file:

  • server/trunk/common: map.c (+11)
silvernexus 2016-05-17 23:45 Rev.: 20262

Avoid interating to the end of the mapstruct list for loaded maps when adding a new one.

11 lines of code changed in 1 file:

  • server/trunk/common: map.c (+11 -3)
silvernexus 2016-05-17 17:26 Rev.: 20259

Change the Constitution depletion message to differentiate it from the permanent stat loss message.

1 lines of code changed in 1 file:

  • server/trunk/common: living.c (+1 -1)
silvernexus 2016-05-15 20:59 Rev.: 20253

Refactor some if statements to use a switch statement instead.

32 lines of code changed in 1 file:

  • server/trunk/common: arch.c (+32 -11)
silvernexus 2016-05-14 22:41 Rev.: 20250

Optimize the absdir() function to perform in O(1).

5 lines of code changed in 1 file:

  • server/trunk/common: object.c (+5 -4)
ryo_saeba 2016-02-28 09:20 Rev.: 20226

Display color and underline for items too.

26 lines of code changed in 2 files:

  • server/trunk/common: holy.c (+3 -3), item.c (+23 -24)
kstenger 2016-02-14 14:46 Rev.: 20221

Fix order of attributes in object (bug 798) & improve in-code related comments

The field 'artifact' was before the field 'name' in the object structure.
This prevented it from beeing copied when the object was copied or cloned.
Moved it below and improved in-code comments about it.

Fixes https://sourceforge.net/p/crossfire/bugs/798/

1 lines of code changed in 1 file:

  • server/trunk/common: object.c (+1 -1)
ryo_saeba 2016-01-03 09:22 Rev.: 20213

Add media tags to monsters description (via probe or knowledge), to highlight some resistances.

28 lines of code changed in 3 files:

  • server/trunk/common: info.c (+1 -1), item.c (+25 -3), readable.c (+2 -2)

(813 more)

Generated by StatSVN 0.7.0