-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathnote_manager.lua
More file actions
187 lines (162 loc) · 5.24 KB
/
note_manager.lua
File metadata and controls
187 lines (162 loc) · 5.24 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
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
--@ module = true
local gui = require('gui')
local widgets = require('gui.widgets')
local guidm = require('gui.dwarfmode')
local waypoints = df.global.plotinfo.waypoints
local map_points = df.global.plotinfo.waypoints.points
NoteManager = defclass(NoteManager, gui.ZScreen)
NoteManager.ATTRS{
focus_path='notes/note-manager',
note=DEFAULT_NIL,
on_update=DEFAULT_NIL,
on_dismiss=DEFAULT_NIL,
}
function NoteManager:init()
self.note_pos = nil
local edit_mode = self.note ~= nil
self:addviews{
widgets.Window{
frame={w=35,h=20},
frame_inset={t=1},
resizable=true,
frame_title='Note',
subviews={
widgets.HotkeyLabel {
key='CUSTOM_ALT_N',
label='Name',
frame={l=0,t=0},
auto_width=true,
on_activate=function() self.subviews.name:setFocus(true) end,
},
widgets.TextArea{
view_id='name',
frame={t=1,h=3},
frame_style=gui.FRAME_INTERIOR,
init_text=self.note and self.note.point.name or '',
one_line_mode=true
},
widgets.HotkeyLabel {
key='CUSTOM_ALT_C',
label='Comment',
frame={l=0,t=5},
auto_width=true,
on_activate=function() self.subviews.comment:setFocus(true) end,
},
widgets.TextArea{
view_id='comment',
frame={t=6,b=3},
frame_style=gui.FRAME_INTERIOR,
init_text=self.note and self.note.point.comment or '',
},
widgets.Panel{
view_id='buttons',
frame={b=0,h=1},
frame_inset={l=1,r=1},
subviews={
widgets.HotkeyLabel{
view_id='Save',
frame={l=0,t=0,h=1},
auto_width=true,
label='Save',
key='CUSTOM_CTRL_ENTER',
visible=edit_mode,
on_activate=function() self:saveNote() end,
enabled=function() return #self.subviews.name:getText() > 0 end,
},
widgets.HotkeyLabel{
view_id='Create',
frame={l=0,t=0,h=1},
auto_width=true,
label='Create',
key='CUSTOM_CTRL_ENTER',
visible=not edit_mode,
on_activate=function() self:createNote() end,
enabled=function() return #self.subviews.name:getText() > 0 end,
},
widgets.HotkeyLabel{
view_id='delete',
frame={r=0,t=0,h=1},
auto_width=true,
label='Delete',
key='CUSTOM_CTRL_D',
visible=edit_mode,
on_activate=function() self:deleteNote() end,
},
}
}
},
},
}
end
function NoteManager:setNotePos(note_pos)
self.note_pos = note_pos
end
function NoteManager:createNote()
local cursor_pos = self.note_pos or guidm.getCursorPos()
if cursor_pos == nil then
dfhack.printerr('Enable keyboard cursor to add a note.')
return
end
local name = self.subviews.name:getText()
local comment = self.subviews.comment:getText()
if #name == 0 then
dfhack.printerr('Note need at least a name')
return
end
map_points:insert("#", {
new=true,
id = waypoints.next_point_id,
tile=88,
fg_color=7,
bg_color=0,
name=name,
comment=comment,
pos=cursor_pos
})
waypoints.next_point_id = waypoints.next_point_id + 1
if self.on_update then
self.on_update()
end
self:dismiss()
end
function NoteManager:saveNote()
if self.note == nil then
return
end
local name = self.subviews.name:getText()
local comment = self.subviews.comment:getText()
if #name == 0 then
dfhack.printerr('Note need at least a name')
return
end
self.note.point.name = name
self.note.point.comment = comment
if self.note_pos then
self.note.pos=self.note_pos
end
if self.on_update then
self.on_update()
end
self:dismiss()
end
function NoteManager:deleteNote()
if self.note == nil then
return
end
for ind, map_point in pairs(map_points) do
if map_point.id == self.note.point.id then
map_points:erase(ind)
break
end
end
if self.on_update then
self.on_update()
end
self:dismiss()
end
function NoteManager:onDismiss()
self.note = nil
if self.on_dismiss then
self:on_dismiss()
end
end