Directory server/trunk/plugins/citylife/

Directory Created:
2008-01-27 03:04
Total Files:
2
Deleted Files:
0
Lines of Code:
800

[root]/server/trunk/plugins/citylife
                    directory in repo include (3 files, 62 lines)

Lines of Code

server/trunk/plugins/citylife/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 27 (100.0%) 998 (100.0%) 36.9
ryo_saeba 8 (29.6%) 866 (86.8%) 108.2
akirschbaum 3 (11.1%) 67 (6.7%) 22.3
quinet 1 (3.7%) 29 (2.9%) 29.0
anmaster 4 (14.8%) 17 (1.7%) 4.2
partmedia 6 (22.2%) 9 (0.9%) 1.5
mwedel 3 (11.1%) 5 (0.5%) 1.6
silvernexus 1 (3.7%) 4 (0.4%) 4.0
gros 1 (3.7%) 1 (0.1%) 1.0

Most Recent Commits

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.

1 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: Makefile.am (+1 -1)
partmedia 2017-01-17 11:17 Rev.: 20326

Add porting.c to citylife plugin build

citylife uses RANDOM() which is implemented as cf_random() in porting.c.
This fixes an undefined symbol at load time.

Reported by: Jason Bergmann

2 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: Makefile.am (+2 -1)
partmedia 2015-05-28 12:16 Rev.: 19980

Clean up some log messages

0 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (-3)
partmedia 2014-06-06 17:54 Rev.: 19531

Remove automatic prototype generation with cproto

Obtained from: Tolga Dalman

0 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: Makefile.am (-4)
partmedia 2014-06-06 17:30 Rev.: 19529

Clean up standard C headers.

6 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+6 -5)
silvernexus 2013-11-27 21:21 Rev.: 19144

Removed prisoners from the Wolfsburg and Santo Dominion citylife spawning since they do not move.

4 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+4 -4)
partmedia 2013-07-16 08:30 Rev.: 18792

Trim legacy Makefile headers.

0 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: Makefile.am (-25)
ryo_saeba 2012-04-28 05:24 Rev.: 18029

Apply patch #3522118: new CityLife.py Towns, courtesy Jason Wright.

323 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+323 -1)
mwedel 2011-11-27 01:34 Rev.: 15936

Add logic to do svn version check between plugin and server - this prevents
incompatible plugins from being used.
MSW 2011-11-26

3 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+3)
ryo_saeba 2011-09-04 04:22 Rev.: 15043

Clean unused variables.

8 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+8 -8)
ryo_saeba 2010-08-07 04:03 Rev.: 13559

Change event listener prototype for plugins to return int instead of void*.

7 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+7 -9)
ryo_saeba 2010-05-08 05:19 Rev.: 13152

Transmit talk information to plugins. Make a specific say plugin command.

1 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+1)
mwedel 2010-04-26 02:00 Rev.: 12967

Add missing includes, add some makefiles for them for make distcheck.
MSW 2010-04-25

1 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: Makefile.am (+1)
akirschbaum 2010-03-08 13:33 Rev.: 12599

Rename object_free() to object_free_drop_inventory() to hint about possible side-effects.

3 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+3 -3)
anmaster 2009-02-12 13:48 Rev.: 11461

plugins/cfpython/include/cfpython_proto.h, plugins/cfpython/cfpython.c: Fix
broken give command. Was broken due to MSW removing -Bsymbolic when building
plugins about half a year ago. Also change some other symbols to static in the
plugins to avoid more issues like this.
plugins/cflogger/include/cflogger_proto.h, plugins/cflogger/cflogger.c,
plugins/citylife/include/citylife_proto.h, plugins/citylife/citylife.c,
plugins/cfrhg/include/cfrhg_proto.h, plugins/cfrhg/cfrhg.c,
plugins/cfanim/include/cfanim.h, plugins/cfanim/include/cfanim_proto.h,
plugins/cfanim/cfanim.c, plugins/cfnewspaper/include/cfnewspaper_proto.h,
plugins/cfnewspaper/cfnewspaper.c: More changes in the same style as the above
python changes to reduce possible symbol lookup conflicts. Also make some
functions static.
plugins/cfrhg/include/cfrhg_proto.h, plugins/cfrhg/cfrhg.c: Fix a typo in cfrhg
(was "cfrgh" in one place).

1 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+1 -1)
akirschbaum 2009-01-21 15:30 Rev.: 11205

Whitespace changes: consistently reformat code.

61 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+61 -64)
ryo_saeba 2008-09-19 14:36 Rev.: 9891

Fix for bug #2088893: Assertion in cfanim.c globalEventListener on client connect.

18 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+18 -18)
mwedel 2008-07-24 22:32 Rev.: 9684

plugins/*/Makefile.am: Remove -Xlinker -export-dynamic -Xlinker -Bsymbolic
from extra LDFLAGS. Those are gnu specific linker options which cause
the plugins to fail to compile when not using gld. I've tested the build
without those options with gld on linux, and all works fine, so not sure
if those are still needed - in theory, libtool should cover that. If
those options are still needed, configure.ac should get updated with a
a better test.
MSW 2008-07-24


1 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: Makefile.am (+1 -1)
quinet 2008-07-20 04:49 Rev.: 9584

Automatic style fix: replace "foo* bar" by "foo *bar", remove extra spaces inside parentheses, etc.

29 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+29 -29)
anmaster 2008-06-12 13:25 Rev.: 9294

First step in fixing bug #1992235 (citylife/rabies potential DOS). Make citylife
NPCs undead.

2 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+2)
anmaster 2008-06-04 16:39 Rev.: 9228

Clean up in plugins, fix a lot of gcc warnings (in plugins), update prototype
headers in plugins, make some functions static. Also update build system for
cflogger to make it not include common plugin stuff in header. Followed example
set by cfnewspaper's Makefile.am. Make the template plugin include prototype
header. (It is a good idea to do so, for various reasons.) Also add some missing
newlines at end of copyright header comments in some files. Also make some
variables const (in python plugin) in order to fix gcc warnings and to make
code cleaner (a string literal is always a const char* in C90 or later, but
char* is allowed for compatibility reasons, though it will actually be a const).

13 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+13 -10)
anmaster 2008-06-01 11:40 Rev.: 9198

Set svn:eol-style to native on *.c and *.h files that were missing it.

1 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+1)
gros 2008-05-14 02:34 Rev.: 9069

Allow the server to be built from outside of its source directory.

1 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: Makefile.am (+1 -1)
akirschbaum 2008-05-12 13:44 Rev.: 9024

Ansi C compatibility improvement: use prototypes.

3 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+3 -3)
ryo_saeba 2008-03-23 17:17 Rev.: 8595

Tweak documentation, remove unused parameters.

9 lines of code changed in 1 file:

  • server/trunk/plugins/citylife: citylife.c (+9 -7)
ryo_saeba 2008-01-27 03:04 Rev.: 8290

New plugin: citylife. Adds NPCs to town, to make them more lively.

500 lines of code changed in 2 files:

  • server/trunk/plugins/citylife: Makefile.am (new 39), citylife.c (new 461)
Generated by StatSVN 0.7.0