server/src/automate.c

184 lines
6.2 KiB
C
Raw Normal View History

2018-07-05 20:06:32 +02:00
#include <platform.h>
#include "kernel/faction.h"
#include "kernel/messages.h"
2018-07-05 20:06:32 +02:00
#include "kernel/order.h"
#include "kernel/region.h"
#include "kernel/unit.h"
2018-09-29 18:13:32 +02:00
#include "util/keyword.h"
2018-07-05 20:06:32 +02:00
#include "util/log.h"
#include "automate.h"
#include "laws.h"
2018-07-05 20:06:32 +02:00
#include "study.h"
#include <stdlib.h>
2018-07-11 21:03:00 +02:00
#include <assert.h>
2018-07-05 20:06:32 +02:00
2018-08-05 06:42:31 +02:00
static int cmp_scholars(const void *lhs, const void *rhs)
2018-07-09 03:31:13 +02:00
{
const scholar *a = (const scholar *)lhs;
const scholar *b = (const scholar *)rhs;
2018-07-05 20:06:32 +02:00
if (a->sk == b->sk) {
/* sort by level, descending: */
return b->level - a->level;
}
/* order by skill */
return (int)a->sk - (int)b->sk;
}
int autostudy_init(scholar scholars[], int max_scholars, unit **units)
{
unit *unext = NULL, *u = *units;
faction *f = u->faction;
2018-07-09 03:31:13 +02:00
int nscholars = 0;
2018-07-05 20:06:32 +02:00
while (u) {
keyword_t kwd = init_order(u->thisorder, u->faction->locale);
2018-07-05 20:06:32 +02:00
if (kwd == K_AUTOSTUDY) {
2018-10-14 11:48:21 +02:00
if (long_order_allowed(u)) {
if (f == u->faction) {
scholar * st = scholars + nscholars;
skill_t sk = getskill(u->faction->locale);
if (check_student(u, u->thisorder, sk)) {
st->sk = sk;
st->level = effskill_study(u, st->sk);
st->learn = 0;
st->u = u;
if (++nscholars > max_scholars) {
log_fatal("you must increase MAXSCHOLARS");
}
2018-10-14 11:48:21 +02:00
}
}
else if (!unext) {
unext = u;
}
2018-07-05 20:06:32 +02:00
}
}
u = u->next;
2018-07-05 20:06:32 +02:00
}
*units = unext;
2018-07-09 03:31:13 +02:00
if (nscholars > 0) {
qsort(scholars, nscholars, sizeof(scholar), cmp_scholars);
2018-07-07 20:56:35 +02:00
}
2018-07-09 03:31:13 +02:00
return nscholars;
}
2018-07-11 21:03:00 +02:00
static void teaching(scholar *s, int n) {
assert(n <= s->u->number);
s->learn += n;
2018-07-16 10:53:12 +02:00
s->u->flags |= UFL_LONGACTION;
2018-07-11 21:03:00 +02:00
}
static void learning(scholar *s, int n) {
assert(n <= s->u->number);
s->learn += n;
2018-07-16 10:53:12 +02:00
s->u->flags |= UFL_LONGACTION;
2018-07-11 21:03:00 +02:00
}
2018-07-09 03:31:13 +02:00
void autostudy_run(scholar scholars[], int nscholars)
{
2018-07-11 21:03:00 +02:00
int ti = 0;
while (ti != nscholars) {
skill_t sk = scholars[ti].sk;
2018-12-02 11:13:58 +01:00
int t, se, ts = 0, tt = 0, si = ti;
2018-07-11 21:03:00 +02:00
for (se = ti; se != nscholars && scholars[se].sk == sk; ++se) {
int mint;
ts += scholars[se].u->number; /* count total scholars */
mint = (ts + 10) / 11; /* need a minimum of ceil(ts/11) teachers */
for (; mint > tt && si != nscholars && scholars[si].sk == sk; ++si) {
2018-07-11 21:03:00 +02:00
tt += scholars[si].u->number;
}
2018-07-09 03:31:13 +02:00
}
2018-07-11 21:03:00 +02:00
/* now si splits the teachers and students 1:10 */
/* first student must be 2 levels below first teacher: */
for (; si != se && scholars[si].sk == sk; ++si) {
if (scholars[si].level + TEACHDIFFERENCE <= scholars[ti].level) {
break;
}
2018-07-11 21:03:00 +02:00
tt += scholars[si].u->number;
}
/* now si is the first unit we can teach, if we can teach any */
if (si == se || scholars[si].sk != sk) {
/* there are no students, so standard learning for everyone */
2018-07-11 21:03:00 +02:00
for (t = ti; t != se; ++t) {
learning(scholars + t, scholars[t].u->number);
2018-07-09 03:31:13 +02:00
}
2018-07-11 21:03:00 +02:00
}
else {
/* invariant: unit ti can still teach i students */
2018-12-02 11:13:58 +01:00
int s, i = scholars[ti].u->number * STUDENTS_PER_TEACHER;
2018-07-11 21:03:00 +02:00
/* invariant: unit si has n students that can still be taught */
int n = scholars[si].u->number;
for (t = ti, s = si; t != si && s != se; ) {
if (i >= n) {
2018-07-11 21:03:00 +02:00
/* t has more than enough teaching capacity for s */
i -= n;
teaching(scholars + s, n);
learning(scholars + s, scholars[s].u->number);
/* next student, please: */
if (++s == se) {
continue;
}
n = scholars[s].u->number;
}
else {
/* a part of s gets credited and we need a new teacher: */
2018-07-11 21:03:00 +02:00
teaching(scholars + s, i);
/* we still need to teach n students in this unit: */
n -= i;
i = 0;
2018-07-11 21:03:00 +02:00
/* we want a new teacher for s. if any exists, it's next in the sequence. */
if (++t == si) {
continue;
}
if (scholars[t].level - TEACHDIFFERENCE < scholars[s].level) {
/* no remaining teacher can teach this student, so we skip ahead */
2018-07-11 21:03:00 +02:00
do {
/* remaining students learn without a teacher: */
learning(scholars + s, n);
2018-07-11 21:03:00 +02:00
if (++s == se) {
break;
2018-07-11 21:03:00 +02:00
}
n = scholars[s].u->number;
} while (scholars[t].level - TEACHDIFFERENCE < scholars[s].level);
}
i = scholars[t].u->number * STUDENTS_PER_TEACHER;
2018-07-09 03:31:13 +02:00
}
}
if (i > 0) {
int remain = (STUDENTS_PER_TEACHER * scholars[t].u->number - i + STUDENTS_PER_TEACHER - 1) / STUDENTS_PER_TEACHER;
/* teacher has remaining time */
learning(scholars + t, remain);
}
++t;
for (; t < si; ++t) {
learning(scholars + t, scholars[t].u->number);
}
2018-07-09 03:31:13 +02:00
}
2018-07-11 21:03:00 +02:00
ti = se;
2018-07-09 03:31:13 +02:00
}
}
#define MAXSCHOLARS 512
2018-07-09 03:31:13 +02:00
void do_autostudy(region *r)
{
static int max_scholars;
unit *units = r->units;
2018-07-09 03:31:13 +02:00
scholar scholars[MAXSCHOLARS];
while (units) {
int i, nscholars = autostudy_init(scholars, MAXSCHOLARS, &units);
if (nscholars > max_scholars) {
stats_count("automate.max_scholars", nscholars - max_scholars);
max_scholars = nscholars;
}
autostudy_run(scholars, nscholars);
for (i = 0; i != nscholars; ++i) {
int days = STUDYDAYS * scholars[i].learn;
learn_skill(scholars[i].u, scholars[i].sk, days);
}
2018-07-05 20:06:32 +02:00
}
}