economy reorganization

more gentle magic school parsing
null banners
fix: building taxes
This commit is contained in:
Enno Rehling 2009-07-19 08:15:45 +00:00
parent 3e2da75843
commit a2475ebdc0
10 changed files with 200 additions and 196 deletions

View file

@ -977,7 +977,7 @@ cr_find_address(FILE * F, const faction * uf, const faction_list * addresses)
fprintf(F, "PARTEI %d\n", f->no); fprintf(F, "PARTEI %d\n", f->no);
fprintf(F, "\"%s\";Parteiname\n", f->name); fprintf(F, "\"%s\";Parteiname\n", f->name);
if (f->email) fprintf(F, "\"%s\";email\n", f->email); if (f->email) fprintf(F, "\"%s\";email\n", f->email);
fprintf(F, "\"%s\";banner\n", f->banner); if (f->banner) fprintf(F, "\"%s\";banner\n", f->banner);
fprintf(F, "\"%s\";locale\n", locale_name(f->locale)); fprintf(F, "\"%s\";locale\n", locale_name(f->locale));
if (f->alliance!=NULL && f->alliance==uf->alliance) { if (f->alliance!=NULL && f->alliance==uf->alliance) {
fprintf(F, "%d;alliance\n", f->alliance->id); fprintf(F, "%d;alliance\n", f->alliance->id);
@ -1412,7 +1412,7 @@ report_computer(const char * filename, report_context * ctx, const char * charse
fprintf(F, "\"%s\";Parteiname\n", f->name); fprintf(F, "\"%s\";Parteiname\n", f->name);
fprintf(F, "\"%s\";email\n", f->email); fprintf(F, "\"%s\";email\n", f->email);
fprintf(F, "\"%s\";banner\n", f->banner); if (f->banner) fprintf(F, "\"%s\";banner\n", f->banner);
print_items(F, f->items, f->locale); print_items(F, f->items, f->locale);
fputs("OPTIONEN\n", F); fputs("OPTIONEN\n", F);
for (i=0;i!=MAXOPTIONS;++i) { for (i=0;i!=MAXOPTIONS;++i) {

View file

@ -3219,12 +3219,11 @@ peasant_taxes(region * r)
maxsize = buildingeffsize(b, false); maxsize = buildingeffsize(b, false);
morale = region_get_morale(r); morale = region_get_morale(r);
if (maxsize > morale) { if (morale<maxsize) {
maxsize = morale; maxsize = morale;
} }
if (maxsize>0 && morale>0) {
if (maxsize>0) { int taxmoney = (int)(money * b->type->taxes(b, maxsize));
int taxmoney = (int)((money * maxsize) * b->type->taxes(b));
if (taxmoney>0) { if (taxmoney>0) {
change_money(u, taxmoney); change_money(u, taxmoney);
rsetmoney(r, money - taxmoney); rsetmoney(r, money - taxmoney);
@ -3235,15 +3234,16 @@ peasant_taxes(region * r)
} }
void void
produce(void) produce(struct region *r)
{ {
request workers[1024]; request workers[1024];
region *r;
request *taxorders, *sellorders, *stealorders, *buyorders; request *taxorders, *sellorders, *stealorders, *buyorders;
unit *u; unit *u;
int todo; int todo;
int rule_taxation = get_param_int(global.parameters, "rules.economy.taxation", 0); static int rule_taxation = -1;
int rule_autowork = get_param_int(global.parameters, "work.auto", 0); static int rule_autowork = -1;
boolean limited = true;
request * nextworker = workers;
/* das sind alles befehle, die 30 tage brauchen, und die in thisorder /* das sind alles befehle, die 30 tage brauchen, und die in thisorder
* stehen! von allen 30-tage befehlen wird einfach der letzte verwendet * stehen! von allen 30-tage befehlen wird einfach der letzte verwendet
@ -3255,141 +3255,141 @@ produce(void)
* *
* lehren vor lernen. */ * lehren vor lernen. */
for (r = regions; r; r = r->next) { if (rule_taxation<0) {
boolean limited = true; rule_taxation = get_param_int(global.parameters, "rules.economy.taxation", 0);
request * nextworker = workers; rule_autowork = get_param_int(global.parameters, "work.auto", 0);
assert(rmoney(r) >= 0);
assert(rpeasants(r) >= 0);
if (r->land && rule_taxation==1) {
/* new taxation rules, region owners make money based on morale and building */
peasant_taxes(r);
}
buyorders = 0;
sellorders = 0;
working = 0;
nextentertainer = &entertainers[0];
entertaining = 0;
taxorders = 0;
stealorders = 0;
for (u = r->units; u; u = u->next) {
order * ord;
boolean trader = false;
if (u->race == new_race[RC_SPELL] || fval(u, UFL_LONGACTION))
continue;
if (u->race == new_race[RC_INSECT] && r_insectstalled(r) &&
!is_cursed(u->attribs, C_KAELTESCHUTZ,0))
continue;
if (fval(u, UFL_LONGACTION) && u->thisorder==NULL) {
cmistake(u, u->thisorder, 52, MSG_PRODUCE);
continue;
}
for (ord = u->orders;ord;ord=ord->next) {
switch (get_keyword(ord)) {
case K_BUY:
buy(u, &buyorders, ord);
trader = true;
break;
case K_SELL:
/* sell returns true if the sale is not limited
* by the region limit */
limited &= !sell(u, &sellorders, ord);
trader = true;
break;
}
}
if (trader) {
attrib * a = a_find(u->attribs, &at_trades);
if (a && a->data.i) {
produceexp(u, SK_TRADE, u->number);
}
fset(u, UFL_LONGACTION|UFL_NOTMOVING);
continue;
}
todo = get_keyword(u->thisorder);
if (todo == NOKEYWORD) continue;
if (fval(r->terrain, SEA_REGION) && u->race != new_race[RC_AQUARIAN]
&& !(u->race->flags & RCF_SWIM)
&& todo != K_STEAL && todo != K_SPY && todo != K_SABOTAGE)
continue;
switch (todo) {
case K_ENTERTAIN:
entertain_cmd(u, u->thisorder);
break;
case K_WORK:
if (!rule_autowork && do_work(u, u->thisorder, nextworker)==0) {
++nextworker;
}
break;
case K_TAX:
tax_cmd(u, u->thisorder, &taxorders);
break;
case K_STEAL:
steal_cmd(u, u->thisorder, &stealorders);
break;
case K_SPY:
spy_cmd(u, u->thisorder);
break;
case K_SABOTAGE:
sabotage_cmd(u, u->thisorder);
break;
case K_PLANT:
case K_BREED:
breed_cmd(u, u->thisorder);
break;
case K_RESEARCH:
research_cmd(u, u->thisorder);
break;
}
}
/* Entertainment (expandentertainment) und Besteuerung (expandtax) vor den
* Befehlen, die den Bauern mehr Geld geben, damit man aus den Zahlen der
* letzten Runde berechnen kann, wieviel die Bauern für Unterhaltung
* auszugeben bereit sind. */
if (entertaining) expandentertainment(r);
if (!rule_autowork) {
expandwork(r, workers, nextworker, maxworkingpeasants(r));
}
if (taxorders) expandtax(r, taxorders);
/* An erster Stelle Kaufen (expandbuying), die Bauern so Geld bekommen, um
* nachher zu beim Verkaufen (expandselling) den Spielern abkaufen zu
* können. */
if (buyorders) expandbuying(r, buyorders);
if (sellorders) {
int limit = rpeasants(r) / TRADE_FRACTION;
if (r->terrain == newterrain(T_DESERT) && buildingtype_exists(r, bt_find("caravan")))
limit *= 2;
expandselling(r, sellorders, limited?limit:INT_MAX);
}
/* Die Spieler sollen alles Geld verdienen, bevor sie beklaut werden
* (expandstealing). */
if (stealorders) expandstealing(r, stealorders);
assert(rmoney(r) >= 0);
assert(rpeasants(r) >= 0);
} }
assert(rmoney(r) >= 0);
assert(rpeasants(r) >= 0);
if (r->land && rule_taxation==1) {
/* new taxation rules, region owners make money based on morale and building */
peasant_taxes(r);
}
buyorders = 0;
sellorders = 0;
working = 0;
nextentertainer = &entertainers[0];
entertaining = 0;
taxorders = 0;
stealorders = 0;
for (u = r->units; u; u = u->next) {
order * ord;
boolean trader = false;
if (u->race == new_race[RC_SPELL] || fval(u, UFL_LONGACTION))
continue;
if (u->race == new_race[RC_INSECT] && r_insectstalled(r) &&
!is_cursed(u->attribs, C_KAELTESCHUTZ,0))
continue;
if (fval(u, UFL_LONGACTION) && u->thisorder==NULL) {
cmistake(u, u->thisorder, 52, MSG_PRODUCE);
continue;
}
for (ord = u->orders;ord;ord=ord->next) {
switch (get_keyword(ord)) {
case K_BUY:
buy(u, &buyorders, ord);
trader = true;
break;
case K_SELL:
/* sell returns true if the sale is not limited
* by the region limit */
limited &= !sell(u, &sellorders, ord);
trader = true;
break;
}
}
if (trader) {
attrib * a = a_find(u->attribs, &at_trades);
if (a && a->data.i) {
produceexp(u, SK_TRADE, u->number);
}
fset(u, UFL_LONGACTION|UFL_NOTMOVING);
continue;
}
todo = get_keyword(u->thisorder);
if (todo == NOKEYWORD) continue;
if (fval(r->terrain, SEA_REGION) && u->race != new_race[RC_AQUARIAN]
&& !(u->race->flags & RCF_SWIM)
&& todo != K_STEAL && todo != K_SPY && todo != K_SABOTAGE)
continue;
switch (todo) {
case K_ENTERTAIN:
entertain_cmd(u, u->thisorder);
break;
case K_WORK:
if (!rule_autowork && do_work(u, u->thisorder, nextworker)==0) {
++nextworker;
}
break;
case K_TAX:
tax_cmd(u, u->thisorder, &taxorders);
break;
case K_STEAL:
steal_cmd(u, u->thisorder, &stealorders);
break;
case K_SPY:
spy_cmd(u, u->thisorder);
break;
case K_SABOTAGE:
sabotage_cmd(u, u->thisorder);
break;
case K_PLANT:
case K_BREED:
breed_cmd(u, u->thisorder);
break;
case K_RESEARCH:
research_cmd(u, u->thisorder);
break;
}
}
/* Entertainment (expandentertainment) und Besteuerung (expandtax) vor den
* Befehlen, die den Bauern mehr Geld geben, damit man aus den Zahlen der
* letzten Runde berechnen kann, wieviel die Bauern für Unterhaltung
* auszugeben bereit sind. */
if (entertaining) expandentertainment(r);
if (!rule_autowork) {
expandwork(r, workers, nextworker, maxworkingpeasants(r));
}
if (taxorders) expandtax(r, taxorders);
/* An erster Stelle Kaufen (expandbuying), die Bauern so Geld bekommen, um
* nachher zu beim Verkaufen (expandselling) den Spielern abkaufen zu
* können. */
if (buyorders) expandbuying(r, buyorders);
if (sellorders) {
int limit = rpeasants(r) / TRADE_FRACTION;
if (r->terrain == newterrain(T_DESERT) && buildingtype_exists(r, bt_find("caravan")))
limit *= 2;
expandselling(r, sellorders, limited?limit:INT_MAX);
}
/* Die Spieler sollen alles Geld verdienen, bevor sie beklaut werden
* (expandstealing). */
if (stealorders) expandstealing(r, stealorders);
assert(rmoney(r) >= 0);
assert(rpeasants(r) >= 0);
} }

View file

@ -46,7 +46,7 @@ extern int income(const struct unit * u);
#define MAXNEWBIES 5 #define MAXNEWBIES 5
void economics(struct region *r); void economics(struct region *r);
void produce(void); void produce(struct region *r);
void auto_work(struct region * r); void auto_work(struct region * r);
enum { IC_WORK, IC_ENTERTAIN, IC_TAX, IC_TRADE, IC_TRADETAX, IC_STEAL, IC_MAGIC }; enum { IC_WORK, IC_ENTERTAIN, IC_TAX, IC_TRADE, IC_TRADETAX, IC_STEAL, IC_MAGIC };

View file

@ -3962,10 +3962,8 @@ init_processor(void)
add_proc_order(p, K_STUDY, &learn_cmd, PROC_THISORDER|PROC_LONGORDER, "Lernen"); add_proc_order(p, K_STUDY, &learn_cmd, PROC_THISORDER|PROC_LONGORDER, "Lernen");
p+=10; p+=10;
add_proc_order(p, K_MAKE, &make_cmd, PROC_THISORDER|PROC_LONGORDER, "Produktion"); add_proc_order(p, K_MAKE, &make_cmd, PROC_THISORDER|PROC_LONGORDER, "Produktion");
p+=10; add_proc_postregion(p, &produce, "Arbeiten, Handel, Rekruten");
add_proc_global(p, &produce, "Arbeiten, Handel, Rekruten");
add_proc_postregion(p, &split_allocations, "Produktion II"); add_proc_postregion(p, &split_allocations, "Produktion II");
p+=10; p+=10;

View file

@ -1698,7 +1698,7 @@ list_address(FILE * F, const faction * uf, const faction_list * seenfactions)
char buf[8192]; char buf[8192];
char label = '-'; char label = '-';
sprintf(buf, "%s: %s; %s", factionname(f), f->email, f->banner); sprintf(buf, "%s: %s; %s", factionname(f), f->email, f->banner?f->banner:"");
if (ALLIED(uf, f)) label = '*'; if (ALLIED(uf, f)) label = '*';
else if (alliedfaction(NULL, uf, f, HELP_ALL)) label = '+'; else if (alliedfaction(NULL, uf, f, HELP_ALL)) label = '+';
rparagraph(F, buf, 4, 0, label); rparagraph(F, buf, 4, 0, label);

View file

@ -74,8 +74,18 @@ getmagicskill(const struct locale * lang)
variant token; variant token;
const char * s = getstrtoken(); const char * s = getstrtoken();
if (findtoken(tokens, s, &token)==E_TOK_SUCCESS) { if (s && s[0]) {
return (magic_t)token.i; if (findtoken(tokens, s, &token)==E_TOK_SUCCESS) {
return (magic_t)token.i;
} else {
char buffer[3];
buffer[0] = s[0];
buffer[1] = s[1];
buffer[2] = '\0';
if (findtoken(tokens, buffer, &token)==E_TOK_SUCCESS) {
return (magic_t)token.i;
}
}
} }
return M_NONE; return M_NONE;
} }

View file

@ -1,6 +1,6 @@
/* vi: set ts=2: /* vi: set ts=2:
* *
* Eressea PB(E)M host Copyright (C) 1998-2003 * Eressea PB(E)M host Copyright (C) 1998-2003
* Christian Schlittchen (corwin@amber.kn-bremen.de) * Christian Schlittchen (corwin@amber.kn-bremen.de)
* Katja Zedel (katze@felidae.kn-bremen.de) * Katja Zedel (katze@felidae.kn-bremen.de)
* Henning Peters (faroul@beyond.kn-bremen.de) * Henning Peters (faroul@beyond.kn-bremen.de)
@ -23,8 +23,8 @@ extern "C" {
/* maintenance::flags */ /* maintenance::flags */
#define MTF_NONE 0x00 #define MTF_NONE 0x00
#define MTF_VARIABLE 0x01 /* resource usage scales with size */ #define MTF_VARIABLE 0x01 /* resource usage scales with size */
#define MTF_VITAL 0x02 /* if resource missing, building may crash */ #define MTF_VITAL 0x02 /* if resource missing, building may crash */
typedef struct maintenance { typedef struct maintenance {
const struct resource_type * rtype; /* type of resource required */ const struct resource_type * rtype; /* type of resource required */
@ -44,25 +44,25 @@ typedef struct maintenance {
#define BTF_NAMECHANGE 0x100 /* name and description can be changed more than once */ #define BTF_NAMECHANGE 0x100 /* name and description can be changed more than once */
typedef struct building_type { typedef struct building_type {
const char * _name; const char * _name;
int flags; /* flags */ int flags; /* flags */
int capacity; /* Kapazität pro Größenpunkt */ int capacity; /* Kapazität pro Größenpunkt */
int maxcapacity; /* Max. Kapazität */ int maxcapacity; /* Max. Kapazität */
int maxsize; /* how big can it get, with all the extensions? */ int maxsize; /* how big can it get, with all the extensions? */
int magres; /* how well it resists against spells */ int magres; /* how well it resists against spells */
int magresbonus; /* bonus it gives the target against spells */ int magresbonus; /* bonus it gives the target against spells */
int fumblebonus; /* bonus that reduces fumbling */ int fumblebonus; /* bonus that reduces fumbling */
double auraregen; /* modifier for aura regeneration inside building */ double auraregen; /* modifier for aura regeneration inside building */
struct maintenance * maintenance; /* array of requirements */ struct maintenance * maintenance; /* array of requirements */
struct construction * construction; /* construction of 1 building-level */ struct construction * construction; /* construction of 1 building-level */
const char * (*name)(const struct building_type*, int size); const char * (*name)(const struct building_type*, int size);
void (*init)(struct building_type*); void (*init)(struct building_type*);
void (*age)(struct building *); void (*age)(struct building *);
int (*protection)(struct building *, struct unit *); int (*protection)(struct building *, struct unit *);
double (*taxes)(struct building *); double (*taxes)(struct building *, int size);
struct attrib * attribs; struct attrib * attribs;
} building_type; } building_type;
extern building_type * bt_find(const char* name); extern building_type * bt_find(const char* name);
@ -90,19 +90,19 @@ extern int bt_effsize(const struct building_type * btype, int bsize);
#define BLD_SAVEMASK 0x00 /* mask for persistent flags */ #define BLD_SAVEMASK 0x00 /* mask for persistent flags */
typedef struct building { typedef struct building {
struct building *next; struct building *next;
struct building *nexthash; struct building *nexthash;
const struct building_type * type; const struct building_type * type;
struct region *region; struct region *region;
char *name; char *name;
char *display; char *display;
struct attrib * attribs; struct attrib * attribs;
int no; int no;
int size; int size;
int sizeleft; /* is only used during battle. should be a temporary attribute */ int sizeleft; /* is only used during battle. should be a temporary attribute */
int besieged; /* should be an attribute */ int besieged; /* should be an attribute */
unsigned int flags; unsigned int flags;
} building; } building;
typedef struct building_list { typedef struct building_list {

View file

@ -320,7 +320,7 @@ parse_buildings(xmlDocPtr doc)
} else if (strcmp((const char*)propValue, "protection")==0) { } else if (strcmp((const char*)propValue, "protection")==0) {
btype->protection = (int (*)(struct building*, struct unit *))fun; btype->protection = (int (*)(struct building*, struct unit *))fun;
} else if (strcmp((const char*)propValue, "taxes")==0) { } else if (strcmp((const char*)propValue, "taxes")==0) {
btype->taxes = (double (*)(struct building*))fun; btype->taxes = (double (*)(struct building*, int))fun;
} else if (strcmp((const char*)propValue, "age")==0) { } else if (strcmp((const char*)propValue, "age")==0) {
btype->age = (void (*)(struct building*))fun; btype->age = (void (*)(struct building*))fun;
} else { } else {

View file

@ -448,9 +448,11 @@ lua_building_taxes(building * b)
lua_rawget(L, LUA_GLOBALSINDEX); lua_rawget(L, LUA_GLOBALSINDEX);
type=lua_type(L, 1); type=lua_type(L, 1);
if (lua_isfunction(L, 1)) { if (lua_isfunction(L, 1)) {
int level = buildingeffsize(b, false);
tolua_pushusertype(L, (void *)b, TOLUA_CAST "building"); tolua_pushusertype(L, (void *)b, TOLUA_CAST "building");
tolua_pushnumber(L, level);
if (lua_pcall(L, 1, 1, 0)!=0) { if (lua_pcall(L, 2, 1, 0)!=0) {
const char* error = lua_tostring(L, -1); const char* error = lua_tostring(L, -1);
log_error(("building_taxes(%s) calling '%s': %s.\n", log_error(("building_taxes(%s) calling '%s': %s.\n",
buildingname(b), fname, error)); buildingname(b), fname, error));

View file

@ -31,18 +31,12 @@ function building_protection(b, u)
return 1 return 1
end end
function building_taxes(b) function building_taxes(b, blevel)
btype = b.type btype = b.type
bsize = b.size
if btype=="castle" then if btype=="castle" then
if bsize>=6250 then return 0.05 end return blevel * 0.01
if bsize>=1250 then return 0.04 end
if bsize>=250 then return 0.03 end
if bsize>=50 then return 0.02 end
if bsize>=10 then return 0.01 end
elseif btype=="watch" then elseif btype=="watch" then
if bsize>=10 then return 0.01 end return blevel * 0.005
if bsize>=5 then return 0.005 end
end end
return 0.0 return 0.0
end end