]> git.pond.sub.org Git - empserver/blob - info/Concepts/BTU.t
Import of Empire 4.2.12
[empserver] / info / Concepts / BTU.t
1 .TH Concept "Beurocratic Time Units"
2 .NA BTU "How BTUs are generated"
3 .LV Expert
4 .s1
5 It takes time for decisions to be made by top level officials, and it
6 takes time for their orders to reach those who execute them.
7 The potential of your government to process new information is
8 measured in Bureaucratic Time Units (BTU).
9 .s1
10 BTUs are generated in real-time based on the number of civilians that
11 are in your capital.  Every time you log out and in again, the server
12 calculates how long you've been away, and based on that time awards
13 you a certain number of BTUs.
14 .s1
15 Here is the procedure for determining how many BTUs you get:
16 .nf
17 If the game is a blitz, then as soon as your BTUs go below zero, then
18 they are automatically set back to 512.
19
20 (1) Count the number of civs generating BTUs.
21   civs = maximum(999, number of civs in your capital sector)
22   Note that if you don't have a capital, then you will get _no_ BTUs.
23
24 (2) Find out how many civs are required to make one BTU in one time unit.
25 The "version" command will tell you how many civilians are required to
26 produce one BTU in one time unit.
27
28 (3) Calculate how many BTUs your cap produces in one time unit.
29 Divide the number of civs generating BTUs (step 1) by the number of
30 civs required to produce one BTU in one time unit (step 2).  If your
31 capital is in a mountain or has zero efficiency, then multiply by
32 1/200.  Otherwise, multiply by (sector efficiency) / 100.  Note that
33 0% capitals and mountains generate BTUs as if they were 0.5% capitals.
34
35 (4) Calculate how many time units have passed.
36 The number of "Time units" (TU) since your last login is:
37   TU = (number of seconds since last login) / (number of seconds per ETU).
38 The "version" command will tell you how many seconds are in an
39 "Empire time unit" (ETU).  If more than 336 time units have passed
40 since your last login, then set TU = 336.
41
42 (5) Calculate how many BTUs you get.
43 Multiply the number of BTUs your cap produces in one TU (step 3) by
44 the number of TUs which have passed (step 4).  This is how many BTUs
45 you get.  Note that there is a limit to how many BTUs you can have at
46 any given time.  This number is usually 512 but can be changed by the deity.
47
48 EXAMPLE: say you had a 100% capital containing 500 civs.
49 Suppose that version said:
50
51 It takes 25.00 civilians to produce a BTU in one time unit
52
53 Then first you would divide 500 by 25 to get 20.  Now since your cap
54 is 100% efficient, you would multiply 20 by (100/100) and so the civs
55 in your cap would produce 20 BTUs per time unit.  Now suppose that
56 version said:
57
58 An Empire time unit is 1440 seconds long.
59
60 and suppose that 1 day had passed since the last time you logged on.
61 Then that means that the number of time units which have passed is:
62   TU = (number of second in a day) / (number of seconds per etu)
63      = (24 * 60 * 60) / (1440)
64      = (1440 * 60) / (1440)
65      = 60
66 (Note that another way to find out how many time units there are between
67 updates is to find out how many ETU's there are per update.)
68   Lastly, we multiply 20 by 60 to get 1200 BTUs.  But since the
69 maximum is 512, we would have 512 BTUs.  Note that if your capital had
70 been in a mountain sector, then you would have only gotten 6 BTUs in
71 24 hours.
72 .fi
73 .s1
74 .SA "Innards, version, Time, Playing"