-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhmm.lua
More file actions
596 lines (540 loc) · 12.4 KB
/
Copy pathhmm.lua
File metadata and controls
596 lines (540 loc) · 12.4 KB
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
local hmm = require('hmmlua')
local m={}
HMMDll={}
HMMDll.__index = HMMDll
function m.new()
local self = setmetatable({}, HMMDll)
self.dll = hmm
self.DllEncoding = 0 --0 for utf-8, 1 for gbk
return self
end
function HMMDll:call(funcname, arg)
return self.dll[funcname](arg or "",self.DllEncoding)
end
m.HMMDll=HMMDll
Environment={}
Environment.__index = Environment
function Environment.new()
local self = setmetatable({}, Environment)
self.Tags={} --ValueTag
self.RoomConditions={} --ValueCondition
self.Rooms ={} --Room
self.Paths ={} --path
self.Shortcuts ={} --RoomConditionExitModel
self.Whitelist = {} --string
self.Blacklist = {} --string
self.BlockedLinks ={} --Link
self.CommandCosts ={} --CommandCost
self.RoomTags ={} --RoomTag
return self
end
m.Environment=Environment
MapperOptions={}
MapperOptions.__index = MapperOptions
function MapperOptions.new()
local self = setmetatable({}, MapperOptions)
self.MaxExitCost = 0
self.MaxTotalCost = 0
self.DisableShortcuts = false
self.CommandWhitelist = {} --string
self.CommandNotContains = {} --string
return self
end
m.MapperOptions=MapperOptions
QueryPathAny={}
QueryPathAny.__index = QueryPathAny
function QueryPathAny.new()
local self = setmetatable({}, QueryPathAny)
self.From={} --string
self.Target={} --string
self.Environment=nil
self.Options=nil
return self
end
m.QueryPathAny=QueryPathAny
QueryPath={}
QueryPath.__index = QueryPath
function QueryPath.new()
local self = setmetatable({}, QueryPath)
self.Start=""
self.Target={} --string
self.Environment=nil
self.Options=nil
return self
end
m.QueryPath=QueryPath
KeyTypeValue = {}
KeyTypeValue.__index = KeyTypeValue
function KeyTypeValue.new()
local self = setmetatable({}, KeyTypeValue)
self.Key = ""
self.Type = ""
self.Value = ""
return self
end
m.KeyTypeValue = KeyTypeValue
SnapshotKeyList = {}
SnapshotKeyList.__index = SnapshotKeyList
function SnapshotKeyList.new()
local self = setmetatable({}, SnapshotKeyList)
self.Keys = {} -- KeyTypeValue
return self
end
m.SnapshotKeyList = SnapshotKeyList
KeyType = {}
KeyType.__index = KeyType
function KeyType.new()
local self = setmetatable({}, KeyType)
self.Key = ""
self.Type = ""
return self
end
m.KeyType = KeyType
LandmarkKeyList = {}
LandmarkKeyList.__index = LandmarkKeyList
function LandmarkKeyList.new()
local self = setmetatable({}, LandmarkKeyList)
self.LandmarkKeys = {} -- KeyType
return self
end
m.LandmarkKeyList = LandmarkKeyList
KeyList = {}
KeyList.__index = KeyList
function KeyList.new()
local self = setmetatable({}, KeyList)
self.Keys = {} -- string
return self
end
m.KeyList = KeyList
ListOption = {}
ListOption.__index = ListOption
function ListOption.new()
local self = setmetatable({}, ListOption)
self.Keys = {} -- string
self.Groups = {} -- string
return self
end
m.ListOption = ListOption
ValueTag = {}
ValueTag.__index = ValueTag
function ValueTag.new()
local self = setmetatable({}, ValueTag)
self.Key = ""
self.Value = 0
return self
end
m.ValueTag = ValueTag
Data = {}
Data.__index = Data
function Data.new()
local self = setmetatable({}, Data)
self.Key = ""
self.Value = ""
return self
end
m.Data = Data
ValueCondition = {}
ValueCondition.__index = ValueCondition
function ValueCondition.new()
local self = setmetatable({}, ValueCondition)
self.Key = ""
self.Not = false
self.Value = 0
return self
end
m.ValueCondition = ValueCondition
Exit = {}
Exit.__index = Exit
function Exit.new()
local self = setmetatable({}, Exit)
self.Command = ""
self.To = ""
self.Cost = 1
self.Conditions = {} -- ValueCondition
return self
end
m.Exit = Exit
Room = {}
Room.__index = Room
function Room.new()
local self = setmetatable({}, Room)
self.Key = ""
self.Name = ""
self.Desc = ""
self.Group = ""
self.Tags = {} -- ValueTag
self.Exits = {} -- Exit
self.Data = {} -- Data
return self
end
m.Room = Room
Rooms = {}
Rooms.__index = Rooms
function Rooms.new()
local self = setmetatable({}, Rooms)
self.Rooms = {} -- Room
return self
end
m.Rooms = Rooms
Marker = {}
Marker.__index = Marker
function Marker.new()
local self = setmetatable({}, Marker)
self.Key = ""
self.Value = ""
self.Group = ""
self.Desc = ""
self.Message = ""
return self
end
m.Marker = Marker
Markers = {}
Markers.__index = Markers
function Markers.new()
local self = setmetatable({}, Markers)
self.Markers = {} -- Marker
return self
end
m.Markers = Markers
Route = {}
Route.__index = Route
function Route.new()
local self = setmetatable({}, Route)
self.Key = ""
self.Desc = ""
self.Group = ""
self.Message = ""
self.Rooms = {} -- string
return self
end
m.Route = Route
Routes = {}
Routes.__index = Routes
function Routes.new()
local self = setmetatable({}, Routes)
self.Routes = {} -- Route
return self
end
m.Routes = Routes
Trace = {}
Trace.__index = Trace
function Trace.new()
local self = setmetatable({}, Trace)
self.Key = ""
self.Group = ""
self.Desc = ""
self.Message = ""
self.Locations = {} -- string
return self
end
m.Trace = Trace
Traces = {}
Traces.__index = Traces
function Traces.new()
local self = setmetatable({}, Traces)
self.Traces = {} -- Trace
return self
end
m.Traces = Traces
RegionItem = {}
RegionItem.__index = RegionItem
function RegionItem.new()
local self = setmetatable({}, RegionItem)
self.Not = false
self.Type = ""
self.Value = ""
return self
end
m.RegionItem = RegionItem
Region = {}
Region.__index = Region
function Region.new()
local self = setmetatable({}, Region)
self.Key = ""
self.Group = ""
self.Desc = ""
self.Message = ""
self.Items = {} -- RegionItem
return self
end
m.Region = Region
Regions = {}
Regions.__index = Regions
function Regions.new()
local self = setmetatable({}, Regions)
self.Regions = {} -- Region
return self
end
m.Regions = Regions
Shortcut = {}
Shortcut.__index = Shortcut
function Shortcut.new()
local self = setmetatable({}, Shortcut)
self.Key = ""
self.Command = ""
self.To = ""
self.RoomConditions = {} -- ValueCondition
self.Conditions = {} -- ValueCondition
self.Cost = 1
self.Group = ""
self.Desc=""
return self
end
m.Shortcut = Shortcut
Shortcuts = {}
Shortcuts.__index = Shortcuts
function Shortcuts.new()
local self = setmetatable({}, Shortcuts)
self.Shortcuts = {} -- Shortcut
return self
end
m.Shortcuts = Shortcuts
Variable = {}
Variable.__index = Variable
function Variable.new()
local self = setmetatable({}, Variable)
self.Key = ""
self.Value = ""
self.Group = ""
self.Desc = ""
return self
end
m.Variable = Variable
Variables = {}
Variables.__index = Variables
function Variables.new()
local self = setmetatable({}, Variables)
self.Variables = {} -- Variable
return self
end
m.Variables = Variables
Landmark = {}
Landmark.__index = Landmark
function Landmark.new()
local self = setmetatable({}, Landmark)
self.Key = ""
self.Type = ""
self.Value = ""
self.Group = ""
self.Desc = ""
return self
end
m.Landmark = Landmark
Landmarks = {}
Landmarks.__index = Landmarks
function Landmarks.new()
local self = setmetatable({}, Landmarks)
self.Landmarks = {} -- Landmark
return self
end
m.Landmarks = Landmarks
Snapshot = {}
Snapshot.__index = Snapshot
function Snapshot.new()
local self = setmetatable({}, Snapshot)
self.Key = ""
self.Timestamp = 0
self.Group = ""
self.Type = ""
self.Count = 1
self.Value = ""
return self
end
m.Snapshot = Snapshot
Snapshots = {}
Snapshots.__index = Snapshots
function Snapshots.new()
local self = setmetatable({}, Snapshots)
self.Snapshots = {} -- Snapshot
return self
end
m.Snapshots = Snapshots
Path = {}
Path.__index = Path
function Path.new()
local self = setmetatable({}, Path)
self.From = ""
self.Command = ""
self.To = ""
self.Conditions = {} -- ValueCondition
self.Cost = 1
return self
end
m.Path = Path
RoomConditionExit = {}
RoomConditionExit.__index = RoomConditionExit
function RoomConditionExit.new()
local self = setmetatable({}, RoomConditionExit)
self.RoomConditions = {} -- ValueCondition
self.Command = ""
self.To = ""
self.Conditions = {} -- ValueCondition
self.Cost = 1
return self
end
m.RoomConditionExit = RoomConditionExit
Link = {}
Link.__index = Link
function Link.new()
local self = setmetatable({}, Link)
self.From = ""
self.To = ""
return self
end
m.Link = Link
CommandCost = {}
CommandCost.__index = CommandCost
function CommandCost.new()
local self = setmetatable({}, CommandCost)
self.Command = ""
self.To = ""
self.Cost = 1
return self
end
m.CommandCost = CommandCost
RoomTag = {}
RoomTag.__index = RoomTag
function RoomTag.new()
local self = setmetatable({}, RoomTag)
self.Room = ""
self.Key = ""
self.Value = 1
return self
end
m.RoomTag = RoomTag
Dilate = {}
Dilate.__index = Dilate
function Dilate.new()
local self = setmetatable({}, Dilate)
self.Source = {} -- string
self.Iterations = 1
self.Environment = nil
self.Options = nil
return self
end
m.Dilate = Dilate
TrackExit = {}
TrackExit.__index = TrackExit
function TrackExit.new()
local self = setmetatable({}, TrackExit)
self.Start = ""
self.Command = ""
self.Environment = nil
self.Options = nil
return self
end
m.TrackExit = TrackExit
Key = {}
Key.__index = Key
function Key.new()
local self = setmetatable({}, Key)
self.Key = ""
return self
end
m.Key = Key
GetRoom = {}
GetRoom.__index = GetRoom
function GetRoom.new()
local self = setmetatable({}, GetRoom)
self.Key = ""
self.Environment = nil
self.Options = nil
return self
end
m.GetRoom = GetRoom
SnapshotFilter = {}
SnapshotFilter.__index = SnapshotFilter
function SnapshotFilter.new()
local self = setmetatable({}, SnapshotFilter)
self.Key = nil
self.Type = nil
self.Group = nil
self.MaxCount = 0
return self
end
m.SnapshotFilter = SnapshotFilter
TakeSnapshot={}
TakeSnapshot.__index = TakeSnapshot
function TakeSnapshot.new()
local self = setmetatable({}, TakeSnapshot)
self.Key = ""
self.Type = ""
self.Group = ""
self.Value = ""
return self
end
m.TakeSnapshot = TakeSnapshot
SnapshotSearch = {}
SnapshotSearch.__index = SnapshotSearch
function SnapshotSearch.new()
local self = setmetatable({}, SnapshotSearch)
self.Type = nil
self.Group = nil
self.Keywords = {} -- string
self.PartialMatch = true
self.Any = false
self.MaxNoise = 0
return self
end
m.SnapshotSearch = SnapshotSearch
RoomFilter = {}
RoomFilter.__index = RoomFilter
function RoomFilter.new()
local self = setmetatable({}, RoomFilter)
self.RoomConditions = {} -- ValueCondition
self.HasAnyExitTo = {} -- string
self.HasAnyData = {} -- Data
self.HasAnyName = {} -- string
self.HasAnyGroup = {} -- string
self.ContainsAnyData = {} -- Data
self.ContainsAnyName = {} -- string
self.ContainsAnyKey = {} -- string
return self
end
m.RoomFilter = RoomFilter
SearchRooms = {}
SearchRooms.__index = SearchRooms
function SearchRooms.new()
local self = setmetatable({}, SearchRooms)
self.Filter = RoomFilter.new()
return self
end
m.SearchRooms = SearchRooms
FilterRooms = {}
FilterRooms.__index = FilterRooms
function FilterRooms.new()
local self = setmetatable({}, FilterRooms)
self.Filter = RoomFilter.new()
self.Source = {} -- string
return self
end
m.FilterRooms = FilterRooms
GroupRoom = {}
GroupRoom.__index = GroupRoom
function GroupRoom.new()
local self = setmetatable({}, GroupRoom)
self.Room = ""
self.Group = ""
return self
end
m.GroupRoom = GroupRoom
TagRoom = {}
TagRoom.__index = TagRoom
function TagRoom.new()
local self = setmetatable({}, TagRoom)
self.Room = ""
self.Tag = ""
self.Value = 0
return self
end
m.TagRoom = TagRoom
TraceLocation = {}
TraceLocation.__index = TraceLocation
function TraceLocation.new()
local self = setmetatable({}, TraceLocation)
self.Key = ""
self.Location = ""
return self
end
m.TraceLocation = TraceLocation
return m