forked from github/server
Sphinx
This commit is contained in:
parent
d9ddf937ad
commit
00c546d850
|
@ -9,6 +9,11 @@
|
|||
|
||||
// util includes
|
||||
#include <util/base36.h>
|
||||
#include <util/attrib.h>
|
||||
|
||||
// attrib includes
|
||||
#include <attributes/attributes.h>
|
||||
#include <attributes/variable.h>
|
||||
|
||||
// lua includes
|
||||
#include <lua.hpp>
|
||||
|
@ -120,6 +125,24 @@ faction_setpolicy(faction& a, faction& b, const char * flag, bool value)
|
|||
}
|
||||
}
|
||||
|
||||
static const char *
|
||||
faction_get_variable(faction& f, const char *key)
|
||||
{
|
||||
return get_variable((&f)->attribs, key);
|
||||
}
|
||||
|
||||
static void
|
||||
faction_set_variable(faction& f, const char *key, const char *value)
|
||||
{
|
||||
set_variable(&((&f)->attribs), key, value);
|
||||
}
|
||||
|
||||
static void
|
||||
faction_delete_variable(faction& f, const char *key)
|
||||
{
|
||||
return delete_variable(&((&f)->attribs), key);
|
||||
}
|
||||
|
||||
void
|
||||
bind_faction(lua_State * L)
|
||||
{
|
||||
|
@ -133,6 +156,9 @@ bind_faction(lua_State * L)
|
|||
.def(self == faction())
|
||||
.def("set_policy", &faction_setpolicy)
|
||||
.def("get_policy", &faction_getpolicy)
|
||||
.def("set_variable", &faction_set_variable)
|
||||
.def("get_variable", &faction_get_variable)
|
||||
.def("delete_variable", &faction_delete_variable)
|
||||
.def_readonly("name", &faction::name)
|
||||
.def_readonly("password", &faction::passw)
|
||||
.def_readonly("email", &faction::email)
|
||||
|
|
|
@ -0,0 +1,80 @@
|
|||
function sphinx_handler()
|
||||
|
||||
local function send_gotHint(u, usphinx)
|
||||
u:add_notice("Eine Botschaft von Sphinx ("..itoa36(usphinx.id).."): Du hast diese Woche bereits einen Hinweis erhalten!");
|
||||
end
|
||||
|
||||
local function send_hint(u, usphinx)
|
||||
hintText[0] = "Das Schiff des Elfen hat ein rotes Segel"
|
||||
hintText[1] = "Der Zwerg hat eine Nuss dabei"
|
||||
hintText[2] = "Die Katze führt eine Hellebarde"
|
||||
hintText[3] = "Das Schiff mit dem grünen Segel liegt links neben dem mit einem weissen Segel"
|
||||
hintText[4] = "Auf dem Schiff mit grünen Segeln kam der Speerkämpfer"
|
||||
hintText[5] = "Der Krieger mit dem Kreis im Wappen hat einen Keks"
|
||||
hintText[6] = "Der Krieger des mittleren Schiffs hat ein Schwert"
|
||||
hintText[7] = "Auf dem gelben Segel prankt ein Kreuz als Wappen"
|
||||
hintText[8] = "Der Mensch kam mit dem ersten Schiff"
|
||||
hintText[9] = "Das Schiff mit dem Stern im Wappen liegt neben dem der einen Mandelkern hat"
|
||||
hintText[10] = "Das Schiff des Kriegers, der ein Apfel hat, liegt neben dem, der ein Kreuz als Wappen hat"
|
||||
hintText[11] = "Der Krieger mit dem Turm im Wappen trägt eine Axt"
|
||||
hintText[12] = "Das Schiff des Menschen liegt neben dem blauen Schiff"
|
||||
hintText[13] = "Das Insekt trägt einen Baum als Wappen"
|
||||
hintText[14] = "Das Schiff mit dem Stern im Wappen liegt neben dem des Kriegers, der einen Zweihänder führt"
|
||||
|
||||
for i=0,4,1 do
|
||||
possibleHint[i] = u:faction:get_variable("sphinxhint"..tostring(i))
|
||||
end
|
||||
|
||||
hint = math.random(0,4)
|
||||
|
||||
u:add_notice("Eine Botschaft von Sphinx ("..itoa36(usphinx.id).."): "..hintText[possibleHint[hint]].."!");
|
||||
end
|
||||
|
||||
local function msg_handler(u, evt)
|
||||
str = evt:get_string(0)
|
||||
u2 = evt:get_unit(1)
|
||||
if str.lower() == "hinweis" then
|
||||
if u2:faction:get_variable("sphinxGotHint"..itoa36(u.id) then
|
||||
send_gotHint(u2)
|
||||
else
|
||||
send_hint(u2, u)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local f = get_faction(atoi36("ycx9"))
|
||||
local u = get_unit(atoi36("si7z"))
|
||||
if u ~= nil and u.faction == f then
|
||||
u:add_handler("message", msg_handler)
|
||||
end
|
||||
|
||||
local f = get_faction(atoi36("ycx9"))
|
||||
local u = get_unit(atoi36("qcph"))
|
||||
if u ~= nil and u.faction == f then
|
||||
u:add_handler("message", msg_handler)
|
||||
end
|
||||
end
|
||||
|
||||
function sphinx_weekly()
|
||||
local f = get_faction(atoi36("ycx9"))
|
||||
local u = get_unit(atoi36("si7z"))
|
||||
if u ~= nil and u.faction == f then
|
||||
u.region:add_notice("Eine Botschaft von Sphinx (si7z): Mit SPHINX HINWEIS gebe ich euch einen Hinweis, mit SPHINX ANTWORT \"Antwort\" könnt ihr mir eure Antwort mitteilen. Doch Vorsicht, falsche Antworten werde ich bestrafen!")
|
||||
u.region:add_notice("Eine Botschaft von Sphinx (si7z): Fünf Krieger kamen auf ihren Schiffen in die Ebene der Helden, wollten um die Ehre ringen. Jedes Schiff trug ein anderes Segel, auf dem das Wappen des Kriegers prankte. Ein jeder trug seine liebste Waffe und das Signum seines Volkes und doch war keiner gleich.")
|
||||
u.region:add_notice("Eine Botschaft von Sphinx (si7z): Wer hat den Schneeball?")
|
||||
end
|
||||
|
||||
local u = get_unit(atoi36("qcph"))
|
||||
if u ~= nil and u.faction == f then
|
||||
u.region:add_notice("Eine Botschaft von Sphinx (qcph): Mit SPHINX HINWEIS gebe ich euch einen Hinweis, mit SPHINX ANTWORT \"Antwort\" könnt ihr mir eure Antwort mitteilen. Doch Vorsicht, falsche Antworten werde ich bestrafen!")
|
||||
u.region:add_notice("Eine Botschaft von Sphinx (qcph): Fünf Krieger kamen auf ihren Schiffen in die Ebene der Helden, wollten um die Ehre ringen. Jedes Schiff trug ein anderes Segel, auf dem das Wappen des Kriegers prankte. Ein jeder trug seine liebste Waffe und das Signum seines Volkes und doch war keiner gleich.")
|
||||
u.region:add_notice("Eine Botschaft von Sphinx (qcph): Wer hat den Schneeball?")
|
||||
end
|
||||
|
||||
for faction in factions() do
|
||||
faction:delete_variable("sphinxGotHintsi7z", "true");
|
||||
faction:delete_variable("sphinx2GotHintqcph", "true");
|
||||
end
|
||||
|
||||
end
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
|
||||
function init_sphinxhints()
|
||||
|
||||
for faction in factions() do
|
||||
|
||||
for i=0,14,1 do
|
||||
hints[i] = 0
|
||||
end
|
||||
for i=0,4,1 do
|
||||
if faction:get_variable("sphinxhint"..tostring(i)) == nil then
|
||||
repeat
|
||||
hint = math.random(0,14)
|
||||
until hints[hint] = 0
|
||||
hints[hint] = 1
|
||||
faction:set_variable("sphinxhint"..tostring(i),tostring(hint))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
init_sphinxhints()
|
||||
|
|
@ -7,7 +7,8 @@ function run_wdw()
|
|||
|
||||
-- run the turn (not yet)
|
||||
read_orders(orderfile)
|
||||
init_sphinx()
|
||||
sphinx_initfactions()
|
||||
sphinx_weekly()
|
||||
plan_monsters()
|
||||
process_orders()
|
||||
outfile = "" .. get_turn()
|
||||
|
@ -28,6 +29,7 @@ function run_wdw()
|
|||
end
|
||||
|
||||
scripts = {
|
||||
"spinx-initfactions.lua",
|
||||
"sphinx-announce.lua"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue