summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dat/clua/lm_monst.lua
blob: 73b32cbc3c150880294cdad92819f2628d081013 (plain) (blame)
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
---------------------------------------------------------------------------
-- lm_monst.lua
-- Create a monster on certain events
--------------------------------------------------------------------------

-------------------------------------------------------------------------------
-- This marker creates a monster on certain events.  It uses the following
-- parameters:
--
-- * death_monster: The name of the monster who's death triggers the creation
--       of the new monster.
--
-- * new_monster: The name of the monster to create.
--
-- * message: Message to give when monster is created, regardless of whether
--       or not the player can see the marker.
--
-- * message_seen: Message to give if the player can see the marker.
--
-- * message_unseen: Message to give if the player can't see the marker.
--
-- NOTE: If the feature where the marker is isn't habitable by the new monster,
-- the feature will be changed to the monster's primary habitat.
-------------------------------------------------------------------------------

-- TODO:
--  * Place more than one monster.
--  * Place monster displaced from marker.
--  * Be triggered more than once.

require('clua/lm_trig.lua')

MonsterOnTrigger       = util.subclass(Triggerable)
MonsterOnTrigger.CLASS = "MonsterOnTrigger"

function MonsterOnTrigger:new(pars)
  pars = pars or { }

  if not pars.new_monster or pars.new_monster == "" then
    error("Must provide new_monster")
  end

  pars.message_seen   = pars.message_seen or pars.message or ""
  pars.message_unseen = pars.message_unseen or pars.message or ""

  local mot = self.super.new(self)

  mot.message_seen    = pars.message_seen
  mot.message_unseen  = pars.message_unseen
  mot.death_monster   = pars.death_monster
  mot.new_monster     = pars.new_monster
  mot.props           = util.append( mot.props, pars)

  return mot
end

function MonsterOnTrigger:write(marker, th)
  MonsterOnTrigger.super.write(self, marker, th)

  file.marshall(th, self.message_seen)
  file.marshall(th, self.message_unseen)
  file.marshall(th, self.new_monster)
  lmark.marshall_table(th, self.props)
end

function MonsterOnTrigger:read(marker, th)
  MonsterOnTrigger.super.read(self, marker, th)

  self.message_seen   = file.unmarshall_string(th)
  self.message_unseen = file.unmarshall_string(th)
  self.new_monster    = file.unmarshall_string(th)
  self.props          = lmark.unmarshall_table(th)

  setmetatable(self, MonsterOnTrigger) 

  return self
end

function MonsterOnTrigger:on_trigger(triggerer, marker, ev)
  local x,     y     = marker:pos()
  local you_x, you_y = you.pos()

  if x == you_x and y == you_y then
    return
  end

  if dgn.mons_at(x, y) then
    return
  end

  -- you.losight() seems to be necessary if the player has been moved by
  -- a wizard command and then the marker triggered by another wizard
  -- command, since then no turns will have been taken and the LOS info
  -- won't have been updated.
  you.losight()
  local see_cell = you.see_cell(x, y)

  if (not dgn.create_monster(x, y, self.new_monster)) then
    return
  elseif self.message_seen ~= "" and see_cell then
    crawl.mpr(self.message_seen)
  elseif self.message_unseen ~= "" and not see_cell then
    crawl.mpr(self.message_unseen)
  end

  self:remove(marker)
end

function monster_on_death(pars)
  local death_monster = pars.death_monster or pars.target

  pars.death_monster = nil
  pars.target        = nil

  local mod = MonsterOnTrigger:new(pars)

  mod:add_triggerer(
                     DgnTriggerer:new {
                       type   = "monster_dies",
                       target = death_monster
                     }
                   )

  return mod
end