-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.go
406 lines (349 loc) · 8.28 KB
/
script.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
package main
import (
"bytes"
"encoding/gob"
"github.com/k-lee9575/mt19937"
"github.com/mohemohe/temple"
"log"
"math"
"os"
"plugin"
"regexp"
"strconv"
"strings"
"time"
)
type (
M = map[string]interface{}
P struct {
ID string
Name string
Room string
Text string
}
S struct {
Enable bool
HP int
Rebirth int
Auto bool
Last time.Time
}
)
var store *plugin.Plugin
var ch *chan M
const maxHP = 100
const maxDamage = 10
const heal = 10
var mt *mt19937.MT19937
var re *regexp.Regexp
func Boot(s *plugin.Plugin, c *chan M) {
store = s
ch = c
gob.Register(M{})
gob.Register([]interface{}{})
mt = mt19937.New()
re = regexp.MustCompile("疲|苦|眠|怠|突|痛|つかれ[たてす]?|ひろう|だる[いくす]?|つら[いくす]?|ねむ[いくす]?|しんど[いくす]?|くるし[いくす]?|いた[いくす]|tukare|tukare|tsukare|tsukare|tire|tire|tiring|tiring|ちれ|たいや|タイヤ|たれかつ|タレかつ|タレカツ|たれカツ")
}
func Help() string {
t := `{{.p}}社会: つらい
`
m := M{
"p": os.Getenv("LXBOT_COMMAND_PREFIX"),
}
r, _ := temple.Execute(t, m)
return r
}
func OnMessage() []func(M) M {
return []func(M) M{
func(msg M) M {
text := msg["message"].(M)["text"].(string)
if strings.HasPrefix(text, os.Getenv("LXBOT_COMMAND_PREFIX")+"社会") {
text := handleInternal(msg)
msg["mode"] = "reply"
msg["message"].(M)["text"] = text
return msg
}
return nil
},
func(msg M) M {
handleSocial(msg)
return nil
},
}
}
func deepCopy(msg M) (M, error) {
var b bytes.Buffer
e := gob.NewEncoder(&b)
d := gob.NewDecoder(&b)
if err := e.Encode(msg); err != nil {
return nil, err
}
r := map[string]interface{}{}
if err := d.Decode(&r); err != nil {
return nil, err
}
return r, nil
}
func pack(msg M) P {
return P{
ID: msg["user"].(M)["id"].(string),
Name: msg["user"].(M)["name"].(string),
Room: msg["room"].(M)["id"].(string),
Text: msg["message"].(M)["text"].(string),
}
}
func storeKey(pack P) string {
return "lxbot_socialquest_" + pack.Room + "_" + pack.ID
}
func current(pack P) S {
en := false
hp := maxHP
bi := 0
au := false
l := time.Now()
k := storeKey(pack) + "_enable"
s := get(k)
if s != nil {
en = s.(bool)
}
k = storeKey(pack) + "_hp"
h := get(k)
if h != nil {
switch h.(type) {
case int32:
hp = (int)(h.(int32))
case int:
hp = h.(int)
}
}
k = storeKey(pack) + "_rebirth"
b := get(k)
if b != nil {
switch h.(type) {
case int32:
bi = (int)(b.(int32))
case int:
bi = b.(int)
}
}
k = storeKey(pack) + "_auto"
a := get(k)
if a != nil {
au = a.(bool)
}
k = storeKey(pack) + "_last"
t := get(k)
if t != nil {
p, err := time.Parse(time.RFC3339, t.(string))
if err != nil {
log.Println(err)
} else {
l = p
}
}
return S{
Enable: en,
HP: hp,
Rebirth: bi,
Auto: au,
Last: l,
}
}
func update(pack P, next S) {
k := storeKey(pack) + "_enable"
set(k, next.Enable)
k = storeKey(pack) + "_hp"
set(k, next.HP)
k = storeKey(pack) + "_rebirth"
set(k, next.Rebirth)
k = storeKey(pack) + "_auto"
set(k, next.Auto)
k = storeKey(pack) + "_last"
set(k, next.Last.Format(time.RFC3339))
}
func handleInternal(msg M) string {
p := os.Getenv("LXBOT_COMMAND_PREFIX")
pk := pack(msg)
text := msg["message"].(M)["text"].(string)
args := strings.Fields(text)
l := len(args)
if l == 2 {
switch args[1] {
case "register":
return register(pk)
case "unregister":
return unregister(pk)
case "status":
return status(pk)
case "reincarnation":
return p + "社会 reincarnation [auto|manual|status]"
}
}
if l == 3 && args[1] == "reincarnation" {
switch args[2] {
case "auto":
return autoRebirth(pk)
case "manual":
return manualRebirth(pk)
case "status":
return rebirthStatus(pk)
}
}
return p + "社会 [register|unregister|status|reincarnation]"
}
func register(p P) string {
c := current(p)
if c.Enable {
return p.Name + "は既に社会に参加しています。 残りHP: " + strconv.Itoa(c.HP) + "/" + strconv.Itoa(maxHP) + " 転生回数: " + strconv.Itoa(c.Rebirth)
}
nhp := c.HP
if nhp <= 0 {
nhp = maxHP
}
now := time.Now()
today, _ := time.Parse("20060102", now.Format("20060102"))
update(p, S{
Enable: true,
HP: nhp,
Rebirth: c.Rebirth,
Auto: c.Auto,
Last: today,
})
return p.Name + "は社会に参加しました。つよく生きましょう。 残りHP: " + strconv.Itoa(c.HP) + "/" + strconv.Itoa(maxHP) + " 転生回数: " + strconv.Itoa(c.Rebirth)
}
func unregister(p P) string {
c := current(p)
if !c.Enable {
return p.Name + "は既に社会から離脱しています。"
}
update(p, S{
Enable: false,
HP: c.HP,
Rebirth: c.Rebirth,
Auto: c.Auto,
Last: c.Last,
})
return p.Name + "は社会から離脱しました。来世もがんばりましょう。"
}
func status(p P) string {
c := current(p)
if c.Enable {
return p.Name + "は社会に参加しています。 残りHP: " + strconv.Itoa(c.HP) + "/" + strconv.Itoa(maxHP) + " 転生回数: " + strconv.Itoa(c.Rebirth)
}
return p.Name + "は社会に参加していません。"
}
func autoRebirth(p P) string {
c := current(p)
if c.Auto {
return p.Name + "の自動転生は既に有効です。"
}
c.Auto = true
update(p, c)
return p.Name + "の自動転生を有効にしました。油断せずに生きましょう。"
}
func manualRebirth(p P) string {
c := current(p)
if !c.Auto {
return p.Name + "の自動転生は既に無効です。"
}
c.Auto = false
update(p, c)
return p.Name + "の自動転生を有効にしました。命を大事にしましょう。"
}
func rebirthStatus(p P) string {
c := current(p)
if c.Auto {
return p.Name + "の自動転生は有効です。"
}
return p.Name + "の自動転生は無効です。"
}
func handleSocial(msg M) {
p := pack(msg)
c := current(p)
if !c.Enable || strings.Contains(p.Text, "ない") {
return
}
l, d := calcDamage(p.Text)
if l == 0 {
return
}
nhp := c.HP
nbhp := c.HP
now := time.Now()
today, _ := time.Parse("20060102", now.Format("20060102"))
diff := today.Sub(c.Last)
days := int(math.Floor(diff.Hours() / 24))
if days > 0 {
nhp += heal * days
if nhp > maxHP {
nhp = maxHP
}
nbhp = nhp
心ioの気持ちになってsend(msg, "宿屋で"+strconv.Itoa(days)+"日休みました。 残りHP: "+strconv.Itoa(c.HP)+"/"+strconv.Itoa(maxHP)+" -> "+strconv.Itoa(nhp)+"/"+strconv.Itoa(maxHP))
}
nhp -= d
update(p, S{
Enable: true,
HP: nhp,
Rebirth: c.Rebirth,
Auto: c.Auto,
Last: today,
})
tt := "こうげき!"
if l == 2 {
tt = "はやぶさ斬り!"
}
if l > 2 {
tt = "れんぞくこうげき!"
}
dt := "に" + strconv.Itoa(d) + "のダメージ!"
if l == 0 || d == 0 {
dt = "はひらりと身をかわした!"
}
心ioの気持ちになってsend(msg, "社会の"+tt+" "+p.Name+dt+" 残りHP: "+strconv.Itoa(nbhp)+"/"+strconv.Itoa(maxHP)+" -> "+strconv.Itoa(nhp)+"/"+strconv.Itoa(maxHP))
if nhp <= 0 {
心ioの気持ちになってsend(msg, p.Name+"は社会の荒波に打ち勝てませんでした。")
if c.Auto {
nhp = maxHP
心ioの気持ちになってsend(msg, "温かい光が"+p.Name+"の体を包み込んだ。 残りHP: "+strconv.Itoa(nhp)+"/"+strconv.Itoa(maxHP)+" 転生回数: "+strconv.Itoa(c.Rebirth+1))
}
// FIXME: 本当はここで転生回数を+1してはいけない
// HACK: status的には表示されないからセーフ
update(p, S{
Enable: c.Auto,
HP: nhp,
Rebirth: c.Rebirth + 1,
Auto: c.Auto,
Last: today,
})
}
}
func calcDamage(text string) (int, int) {
r := re.FindAllString(text, -1)
l := len(r)
return l, (int)(mt19937.DistInt64(mt, 0, int64(maxDamage * l)).Int64())
}
func 心ioの気持ちになってsend(msg M, text string) {
m, _ := deepCopy(msg)
m["mode"] = "reply"
m["message"].(M)["text"] = text
*ch <- m
time.Sleep(250 * time.Millisecond)
}
func get(key string) interface{} {
fn, err := store.Lookup("Get")
if err != nil {
log.Println(err)
return nil
}
result := fn.(func(string) interface{})(key)
return result
}
func set(key string, value interface{}) {
fn, err := store.Lookup("Set")
if err != nil {
log.Println(err)
return
}
fn.(func(string, interface{}))(key, value)
}