test
This commit is contained in:
parent
72d58c83b5
commit
8017d73f0b
@ -79,10 +79,11 @@ func SQLIdentifyMsgWorker(id int, objIds <-chan int64) {
|
||||
// War reports
|
||||
// r := regexp.MustCompile(`^(?P<Castle>[.]{1})(?P<Guild>(\[[A-Z]{3}\]){0,1})(?P<User>(\[[A-Za-z0-9 ]*\]){1}) ⚔:(?P<Attack>[0-9]+) ?:(?P<Defense>[0-9]+) Lvl: (?P<Level>[0-9]+)(?s:.*)$`)
|
||||
// r := regexp.MustCompile(`^(?s:.*)$`)
|
||||
r := regexp.MustCompile(`^(?P<Castle>.)(?s:.*)$`)
|
||||
r := regexp.MustCompile(`^(?P<Castle>.)(?P<Guild>(\[[A-Z]{3}\]){0,1})(?s:.*)$`)
|
||||
if r.FindStringSubmatch(m.Text) != nil {
|
||||
log.Printf("SQLIdentifyMsgWorker["+strconv.Itoa(id)+"] : War report identified (%d)\n", objId)
|
||||
log.Printf("SQLIdentifyMsgWorker["+strconv.Itoa(id)+"] : Castle : %s (%d)\n", r.ReplaceAllString(m.Text, "${Castle}"), objId)
|
||||
log.Printf("SQLIdentifyMsgWorker["+strconv.Itoa(id)+"] : Guild : %s (%d)\n", r.ReplaceAllString(m.Text, "${Guild}"), objId)
|
||||
} else {
|
||||
log.Printf("SQLIdentifyMsgWorker["+strconv.Itoa(id)+"] : Unknown message type (%d)\n", objId)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user