This file is indexed.

/usr/share/infon-server/api/oo.lua is in infon-server 0~r198-8+b1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
--[[

    Copyright (c) 2006 Florian Wesch <fw@dividuum.de>. All Rights Reserved.
    
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License along
    with this program; if not, write to the Free Software Foundation, Inc.,
    59 Temple Place - Suite 330, Boston, MA  02111-1307, USA

]]--

------------------------------------------------------------------------
-- Creature Class
------------------------------------------------------------------------

Creature = {}

function Creature:moveto(tx, ty)
    local x, y = self:pos()
    if x == tx and y == ty then
        return true
    end
    
    if not self:set_path(tx, ty) then
        return false
    end

    if not self:begin_walk_path() then
        return false
    end

    local review = game_time()
    while self:is_walking() do
        self:wait_for_next_round()
        if game_time() > review + 500 then
            self:set_path(tx, ty)     
            review = game_time()
        end
    end
    
    x, y = self:pos()
    return x == tx and y == ty
end

function Creature:heal() 
    if not self:begin_healing() then
        return false
    end
    while self:is_healing() do
        self:wait_for_next_round()
    end
    return true
end

function Creature:eat()
    if not self:begin_eating() then
        return false
    end
    while self:is_eating() do
        self:wait_for_next_round()
    end
    return true
end

function Creature:feed(target)
    if not self:set_target(target) then
        return false
    end
    if not self:begin_feeding() then
        return false
    end
    while self:is_feeding() do
        self:wait_for_next_round()
    end
    return true
end

function Creature:attack(target) 
    if not self:set_target(target) then
        return false
    end
    if not self:begin_attacking() then
        return false
    end
    while self:is_attacking() do
        self:wait_for_next_round()
    end
    return true
end

function Creature:convert(to_type)
    if not self:set_conversion(to_type) then
        return false
    end
    if not self:begin_converting() then 
        return false
    end
    while self:is_converting() do
        self:wait_for_next_round()
    end
    return self:type() == to_type
end

function Creature:spawn()
    if not self:begin_spawning() then
        return false
    end
    while self:is_spawning() do
        self:wait_for_next_round()
    end
    return true
end

function Creature:suicide()
    suicide(self.id)
end

function Creature:nearest_enemy()
    return get_nearest_enemy(self.id)
end

function Creature:set_path(x, y)
    return set_path(self.id, x, y)
end

function Creature:set_target(c)
    return set_target(self.id, c)
end

function Creature:set_conversion(t)
    return set_convert(self.id, t)
end

function Creature:pos()
    return get_pos(self.id)
end

function Creature:speed()
    return get_speed(self.id)
end

function Creature:health()
    return get_health(self.id)
end

function Creature:food()
    return get_food(self.id)
end

function Creature:max_food()
    return get_max_food(self.id)
end

function Creature:tile_food()
    return get_tile_food(self.id)
end

function Creature:tile_type()
    return get_tile_type(self.id)
end

function Creature:type()
    return get_type(self.id)
end

function Creature:screen_message(msg)
    return set_message(self.id, msg)
end

function Creature:begin_idling()
    return set_state(self.id, CREATURE_IDLE)
end

function Creature:begin_walk_path()
    return set_state(self.id, CREATURE_WALK)
end

function Creature:begin_healing()
    return set_state(self.id, CREATURE_HEAL)
end

function Creature:begin_eating()
    return set_state(self.id, CREATURE_EAT)
end

function Creature:begin_attacking()
    return set_state(self.id, CREATURE_ATTACK)
end

function Creature:begin_converting()
    return set_state(self.id, CREATURE_CONVERT)
end

function Creature:begin_spawning()
    return set_state(self.id, CREATURE_SPAWN)
end

function Creature:begin_feeding()
    return set_state(self.id, CREATURE_FEED)
end

function Creature:is_idle()
    return get_state(self.id) == CREATURE_IDLE
end

function Creature:is_healing()
    return get_state(self.id) == CREATURE_HEAL
end

function Creature:is_walking()
    return get_state(self.id) == CREATURE_WALK
end

function Creature:is_eating()
    return get_state(self.id) == CREATURE_EAT
end

function Creature:is_attacking()
    return get_state(self.id) == CREATURE_ATTACK
end

function Creature:is_converting()
    return get_state(self.id) == CREATURE_CONVERT
end

function Creature:is_spawning()
    return get_state(self.id) == CREATURE_SPAWN
end

function Creature:is_feeding()
    return get_state(self.id) == CREATURE_FEED
end

function Creature:distance(other)
    return get_distance(self.id, other)
end

function Creature:sleep(msec)
    local time = game_time()
    while time + msec > game_time() do
        self:wait_for_next_round()
    end
end

function Creature:main_restarter() 
    local wrap do 
        if self.onThreadFatal then
            wrap = function(func, ...)
                while true do
                    local _, msg = epcall(_TRACEBACK, func, ...)
                    if not self:onThreadFatal("main failed: " .. msg) then break end
                end
                error("thread terminated")
            end
        else
            wrap = function(func, ...)
                return func(...)
            end
        end
    end

    wrap(function () 
        if self.onRestart then self:onRestart() end
        while true do 
            self:main() 
            self:wait_for_next_round() 
        end 
    end)
end

function Creature:traceback()
    print(_TRACEBACK(self.thread))
end

function Creature:restart()
    set_state(self.id, CREATURE_IDLE)
    self.message = nil
    self.thread  = coroutine.create(self.main_restarter)
    if self.onThreadStart then self:onThreadStart() end
end

function Creature:wait_for_next_round()
    assert(can_yield, "you cannot wait_for_next_round() in interactive mode")
    coroutine.yield()
    if self.onThreadResume then self:onThreadResume() end
end

function Creature:assert(...)
    return assert(...)
end

if ldb then
    local debugged_creature_id

    function Creature:onThreadStart()
        self.is_in_debugger = nil
    end
    
    function Creature:onThreadFatal(msg)
        self:enter_debugger(msg, {"up 2"})
        return false
    end

    function Creature:onThreadResume()
        if self.debug_me then
           local msg = self.debug_me
           self.debug_me = nil
           self:enter_debugger(msg, {"up 4"})
        end
    end

    function Creature:enter_debugger(msg, cmd)
        self.is_in_debugger  = true
        self.message         = "Debugger active (activate with 'd" .. self.id .. "')"
        debugged_creature_id = self.id
        print("debugger started for creature " .. self)
        local ok, msg = pcall(ldb, msg, cmd)
        if not ok then
            print("internal debugger error: " .. msg)
        end
        self.is_in_debugger  = nil
        self.message         = nil
        debugged_creature_id = nil
        coroutine.yield()
    end

    function Creature:assert(v, msg)
        if not v then
            self:enter_debugger(msg or "assertation failed", {"up 3"})
            return nil
        else
            return v
        end
    end

    function onCommand(cmd)
        local id = tonumber(cmd:match("^d([0-9]+)$"))
        if id then 
            if id == debugged_creature_id then
                print("already debugging creature " .. id)
            elseif not creatures[id] then
                print("creature " .. id .. " does not exist")
            elseif not creatures[id].is_in_debugger then
                creatures[id].debug_me = "execution stopped"
            else
                debugged_creature_id = id
                print("debugging creature " .. creatures[debugged_creature_id])
                coroutine.resume(creatures[debugged_creature_id].thread, "bt")
            end
            return
        end

        local debugger_available = creatures[debugged_creature_id] and 
                                   creatures[debugged_creature_id].is_in_debugger

        if cmd == "help" then                                   
            print("   d<id>         attach debugger to creature <id>")
            print("   clist         show creature list")
            if debugger_available then
                coroutine.resume(creatures[debugged_creature_id].thread, cmd)
            end
        elseif cmd == "clist" then
            print("creatures (* = active debugger, ! = in debug mode):")
            for id, creature in pairs(creatures) do
                print(string.format("%s%s %d - %s", 
                                    debugged_creature_id == id and "*" or " ",
                                    creature.is_in_debugger and "!" or " ",
                                    id, tostring(creature)))
            end
        elseif debugger_available then
            coroutine.resume(creatures[debugged_creature_id].thread, cmd)
        else
            print("Huh? Try '?' for help on infon, or 'help' for help on the debugger")
        end
    end

    function onRoundStart()
        onRoundStart = nil
        print("-----------------------------------------")
        print("This server has the ldb debugger enabled.")
        print("Type 'help' to get the debugger commands.")
        print("-----------------------------------------")
    end

    function debug_hook(creature)
        return not creature.is_in_debugger
    end
end

------------------------------------------------------------------------
-- Callbacks von C
------------------------------------------------------------------------
function this_function_call_fails_if_cpu_limit_exceeded() end

-- global table containing all your creatures
creatures = creatures or {}

function player_think(events)
    can_yield = false

    -- Handle the events since the last round.
    for n, event in ipairs(events) do 
        if event.type == CREATURE_SPAWNED then
            local id     = event.id
            local parent = event.parent ~= -1 and event.parent or nil
            local creature = {}
            setmetatable(creature, {
                __index    = Creature, 
                __tostring = function(self)
                    local x, y  = get_pos(self.id)
                    local states = { [0]="idle",   [1]="walk",    [2]="heal",  [3]="eat",
                                     [4]="attack", [5]="convert", [6]="spawn", [7]="feed"}
                    return "<creature " .. self.id .." [" .. x .. "," .. y .."] " .. 
                            "type " .. get_type(self.id) ..", health " .. get_health(self.id) .. ", " ..
                            "food " .. get_food(self.id) .. ", state " .. states[get_state(self.id)]  .. ">"
                end,
                __concat = function (op1, op2)
                    return tostring(op1) .. tostring(op2)
                end
            })
            creatures[id] = creature
            creature.id = id
            if creature.onSpawned then 
                local ok, msg = pcall(creature.onSpawned, creature, parent)
                if not ok then
                    print("onSpawned failed: " .. msg)
                end
            else
                print("onSpawned method deleted")
            end
            creature:restart()
        elseif event.type == CREATURE_KILLED then
            local id     = event.id
            local killer = event.killer ~= -1 and event.killer or nil
            assert(creatures[id])
            if creatures[id].onKilled then 
                local ok, msg = pcall(creatures[id].onKilled, creatures[id], killer)
                if not ok then 
                    print("cannot call onKilled: " .. msg)
                end
            else
                print("onKilled method deleted")
            end
            creatures[id] = nil
        elseif event.type == CREATURE_ATTACKED then
            local id       = event.id
            local attacker = event.attacker
            if creatures[id].onAttacked then 
                local ok, msg = pcall(creatures[id].onAttacked, creatures[id], attacker)
                if not ok then 
                    print("onAttacked failed: " .. msg)
                end
            else
                print("onAttacked method deleted")
            end
        elseif event.type == PLAYER_CREATED then
            if onGameStart then
                local ok, msg = pcall(onGameStart)
                if not ok then
                    print("onGameStart failed: " .. msg)
                end
            end
        else
            error("invalid event " .. event.type)
        end
    end

    -- If onRoundStart is available, call it now.
    if onRoundStart then
        local ok, msg = pcall(onRoundStart)
        if not ok then
            print("onRoundEnd failed: " .. msg)
        end
    end
    
    can_yield = true

    -- Iterate all creatures and execute their code by resuming the creatures coroutine
    for id, creature in pairs(creatures) do
        if type(creature.thread) ~= 'thread' then
            creature.message = 'uuh. self.thread is not a coroutine.'
        elseif coroutine.status(creature.thread) == 'dead' then
            if not creature.message then 
                creature.message = 'main() terminated (maybe it was killed for using too much cpu/memory?)'
            end
        else
            if not debug_hook or debug_hook(creature) then 
                local ok, msg = coroutine.resume(creature.thread, creature)
                if not ok then
                    creature.message = msg
                    -- If the coroutine was interrupted for using too much
                    -- CPU, the following function call will abort the
                    -- player_think function (since no more function calls
                    -- are possible at this point). The code that caused 
                    -- too much CPU can be seen by inspecting the traceback 
                    -- that was saved in creature.message. Use 'i' in the client.
                    this_function_call_fails_if_cpu_limit_exceeded()
                end
            end
        end
    end

    can_yield = false

    -- If onRoundEnd is available, call it now.
    if onRoundEnd then
        local ok, msg = pcall(onRoundEnd)
        if not ok then
            print("onRoundEnd failed: " .. msg)
        end
    end
end