forked from psilord/option-9
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshoot.lisp
More file actions
90 lines (74 loc) · 3.43 KB
/
shoot.lisp
File metadata and controls
90 lines (74 loc) · 3.43 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
(in-package :option-9)
#+option-9-debug (declaim (optimize (safety 3) (space 0) (speed 0) (debug 3)))
;; The shoot verb has become odd. It really means to activate the
;; thing in the turret, so this verb probably has to change. I've introduce
;; the verb fire which is specific to a muzzle. Also, there is a vague
;; starting and stopping of the charge effects too.
(defgeneric fire (ship spawn-class muzzle turret)
(:documentation "Fire a muzzle"))
;; The method for when the player ship shoots
(defmethod shoot ((ship player) port)
(let* ((turret (turret ship port))
(muzzle (payload turret)))
(when muzzle
;; The 'sp-player-shot spawn class encompasses all kinds of
;; shots the player can make, including: shots, missles,
;; mines. The spawn class mainly details to role of the object,
;; plus some other useful things an object might need to know
;; while spawning.
(fire ship 'sp-player-shot muzzle turret)
(modify-score (game-context ship) -1))))
(defmethod shoot ((ship enemy) port)
(let* ((turret (turret ship port))
(muzzle (payload turret)))
(when muzzle
;; The 'sp-enemy-shot spawn class encompasses all kinds of
;; shots the enemy can make, including: shots, missles,
;; mines. The spawn class mainly details to role of the object,
;; plus some other useful things an object might need to know
;; while spawning.
(fire ship 'sp-enemy-shot muzzle turret))))
(defmethod fire ((ship ship) spawn-class (muzzle muzzle) turret)
(let ((shot-name (shot-instance-name muzzle)))
;; Actually fire.
(spawn spawn-class
;; Specialize the shot in the muzzle to be appropriate for the
;; ship firing it.
(specialize-generic-instance-name
(instance-name ship) shot-name)
turret (game-context ship)
;; And transfer the muzzle's charge to the thing I'm about to fire.
:extra-init `(:charge-percentage ,(charge-percentage muzzle)))
;; Stop charging the muzzle and reset, because we've fired
(setf (chargingp muzzle) nil
(charge-percentage muzzle) 0.0)))
(defmethod fire ((ship ship) spawn-class (muzzle mine-muzzle) turret)
(let ((shot-name (shot-instance-name muzzle)))
;; Actually fire
(cond
((plusp (mine-count muzzle))
(spawn spawn-class
;; Specialize the shot in the muzzle to be appropriate for the
;; ship firing it.
(specialize-generic-instance-name
(instance-name ship) shot-name)
turret (game-context ship)
;; And transfer the muzzle's charge to the thing I'm about to fire.
:extra-init `(:charge-percentage ,(charge-percentage muzzle)))
(decf (mine-count muzzle)))
((zerop (mine-count muzzle))
;; TODO do some visual effect, noise that you're out of mines
nil))))
(defmethod start-charging ((ship player) port)
(let* ((turret (turret ship port))
(payload (payload turret)))
(when (and payload (chargeablep payload))
;; Let the payload to accumulate a charge. Whatever it does with
;; its charge is its own deal.
(setf (chargingp payload) t))))
(defmethod stop-charging ((ship player) port)
(let* ((turret (turret ship port))
(payload (payload turret)))
(when (and payload (chargeablep payload))
;; The charge stops accumulating.
(setf (chargingp payload) nil))))