-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathentity.lisp
88 lines (73 loc) · 2.83 KB
/
entity.lisp
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
(in-package :ecs)
(defclass entity ()
((id :reader entity-id
:initform (incf (entity-count *ecs-manager*)))
(tag :accessor tag
:initform nil)
(components :accessor components
:initform nil)))
(defmethod print-object ((object entity) stream)
(print-unreadable-object (object stream :type t)
(format stream "(~{~S~^, ~})" (mapcar #'name (components object)))))
(defun component-names (entity)
"Return a list of component names for an entity."
(mapcar #'name (components entity)))
(defun update-system (entity)
"Register or de-register an entity with all applicable systems.
Called when a component is added or removed from an entity."
(dolist (s (systems *ecs-manager*))
(if (subsetp (required s) (component-names entity))
(pushnew (entity-id entity) (entities s))
(deletef (entities s) (entity-id entity)))))
(defun add-component (entity name &rest args)
"Add a component by name to an entity and update all systems."
(when-let ((component (make-component name args)))
(pushnew component (components entity) :key #'name)
(update-system entity)))
(defun remove-component (entity name)
"Remove a component by name from an entity and update all systems."
(deletef (components entity) name :key #'name)
(update-system entity)
(unless (components entity)
(unregister-entity (entity-id entity))))
(defun register-entity (entity)
"Register an entity with the manager."
(setf (gethash (entity-id entity) (entities *ecs-manager*)) entity))
(defun unregister-entity (id)
"Unregister an entity with the manager."
(remhash id (entities *ecs-manager*)))
(defun tag-entity (id tag)
"Tag an entity."
(let ((entity (entity-by-id id)))
(when (tag entity)
(untag-entity id tag))
(setf (gethash tag (tags *ecs-manager*)) entity)))
(defun untag-entity (id tag)
"Untag an entity."
(let ((entity (entity-by-id id)))
(setf (tag entity) nil)
(remhash tag (tags *ecs-manager*))))
(defun component (entity name)
"Find a component of an entity given its name."
(find name (components entity) :key #'name))
(defun make-entity (&key tag components)
"Create a new entity without any components."
(let ((entity (make-instance 'entity)))
(register-entity entity)
(dolist (name components)
(add-component entity name))
(when tag
(tag-entity (entity-id entity) tag))
entity))
(defmacro make-batch ((&rest items) (&rest components) &body body)
"Macro for creating multiple entities with the same components."
`(let (,@(loop for i in items
for e = `(make-entity :components ',components)
collect (list i e)))
,@body))
(defun entity-by-id (id)
"Find an entity by its ID."
(gethash id (entities *ecs-manager*)))
(defun entity-by-tag (tag)
"Find an entity by its tag."
(gethash tag (tags *ecs-manager*)))