File: cellar_to_bjarn.py

package info (click to toggle)
adonthell-data 0.3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 27,040 kB
  • sloc: python: 5,172; sh: 4,584; makefile: 420; xml: 40; sed: 16
file content (44 lines) | stat: -rw-r--r-- 1,579 bytes parent folder | download | duplicates (3)
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
#
#  (C) Copyright 2001 Kai Sterker <kaisterker@linuxgames.com>
#  Part of the Adonthell Project http://adonthell.linuxgames.com
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License.
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY.
#
#  See the COPYING file for more details
#

# -- Map Event to teleport a character into Bjarn's room, if allowed.
#
#    Teleport the character that triggered this event to another position
#    if bjarn's room door is open.

import adonthell
import events

class cellar_to_bjarn(object):

    # Parameters:
    # smdest: destination submap
    # xdest: X position on smdest
    # ydest: Y position on smdest
    # destdir: direction where to look at after the teleport
    def __init__ (self, eventinstance, smdest, xdest, ydest, destdir):
        self.smdest = smdest
        self.xdest = xdest
        self.ydest = ydest
        self.destdir = destdir
        
    def run (self, submap, x, y, dir, name):
        p = adonthell.gamedata_get_character (name)
        # -- bjarn's door closed?
        open = adonthell.gamedata_get_quest ("demo").get_val("bjarn_door_open")
        if open == 0 or open == 1:
            if p.get_name () == adonthell.gamedata_player ().get_name ():
                adonthell.gamedata_get_character ("Bjarn Fingolson").launch_action (p)
            p.stand ()
            p.go_west ()
        else:
            events.switch_submap (p, self.smdest, self.xdest, self.ydest, self.destdir)