aboutsummaryrefslogtreecommitdiff
path: root/data/core/view.lua
blob: 1f8a9208383cd35abe9edbbf642d1514872370b6 (plain)
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
local core = require "core"
local config = require "core.config"
local style = require "core.style"
local common = require "core.common"
local Object = require "core.object"


local View = Object:extend()

-- context can be "application" or "session". The instance of objects
-- with context "session" will be closed when a project session is
-- terminated. The context "application" is for functional UI elements.
View.context = "application"

function View:new()
  self.position = { x = 0, y = 0 }
  self.size = { x = 0, y = 0 }
  self.scroll = { x = 0, y = 0, to = { x = 0, y = 0 } }
  self.cursor = "arrow"
  self.scrollable = false
  self.scrollbar = {
                     x = { thumb = 0, track = 0 },
                     y = { thumb = 0, track = 0 },
                     w = { thumb = 0, track = 0, to = { thumb = 0, track = 0 } },
                     h = { thumb = 0, track = 0 },
                   }
  self.scrollbar_alpha = { value = 0, to = 0 }
end

function View:move_towards(t, k, dest, rate, name)
  if type(t) ~= "table" then
    return self:move_towards(self, t, k, dest, rate, name)
  end
  local val = t[k]
  local diff = math.abs(val - dest)
  if not config.transitions or diff < 0.5 or config.disabled_transitions[name] then
    t[k] = dest
  else
    rate = rate or 0.5
    if config.fps ~= 60 or config.animation_rate ~= 1 then
      local dt = 60 / config.fps
      rate = 1 - common.clamp(1 - rate, 1e-8, 1 - 1e-8)^(config.animation_rate * dt)
    end
    t[k] = common.lerp(val, dest, rate)
  end
  if diff > 1e-8 then
    core.redraw = true
  end
end


function View:try_close(do_close)
  do_close()
end


function View:get_name()
  return "---"
end


function View:get_scrollable_size()
  return math.huge
end


function View:get_scrollbar_track_rect()
  local sz = self:get_scrollable_size()
  if sz <= self.size.y or sz == math.huge then
    return 0, 0, 0, 0
  end
  local width = style.scrollbar_size
  if self.hovered_scrollbar_track or self.dragging_scrollbar then
    width = style.expanded_scrollbar_size
  end
  return
    self.position.x + self.size.x - width,
    self.position.y,
    width,
    self.size.y
end


function View:get_scrollbar_rect()
  local sz = self:get_scrollable_size()
  if sz <= self.size.y or sz == math.huge then
    return 0, 0, 0, 0
  end
  local h = math.max(20, self.size.y * self.size.y / sz)
  local width = style.scrollbar_size
  if self.hovered_scrollbar_track or self.dragging_scrollbar then
    width = style.expanded_scrollbar_size
  end
  return
    self.position.x + self.size.x - width,
    self.position.y + self.scroll.y * (self.size.y - h) / (sz - self.size.y),
    width,
    h
end


function View:scrollbar_overlaps_point(x, y)
  local sx, sy, sw, sh = self:get_scrollbar_rect()
  return x >= sx - style.scrollbar_size * 3 and x < sx + sw and y > sy and y <= sy + sh
end

function View:scrollbar_track_overlaps_point(x, y)
  local sx, sy, sw, sh = self:get_scrollbar_track_rect()
  return x >= sx - style.scrollbar_size * 3 and x < sx + sw and y > sy and y <= sy + sh
end


function View:on_mouse_pressed(button, x, y, clicks)
  if self:scrollbar_track_overlaps_point(x, y) then
    if self:scrollbar_overlaps_point(x, y) then
      self.dragging_scrollbar = true
    else
      local _, _, _, sh = self:get_scrollbar_rect()
      local ly = (y - self.position.y) - sh / 2
      local pct = common.clamp(ly / self.size.y, 0, 100)
      self.scroll.to.y = self:get_scrollable_size() * pct
    end
    return true
  end
end


function View:on_mouse_released(button, x, y)
  self.dragging_scrollbar = false
end


function View:on_mouse_moved(x, y, dx, dy)
  if self.dragging_scrollbar then
    local delta = self:get_scrollable_size() / self.size.y * dy
    self.scroll.to.y = self.scroll.to.y + delta
    if not config.animate_drag_scroll then
      self:clamp_scroll_position()
      self.scroll.y = self.scroll.to.y
    end
  end
  self.hovered_scrollbar = self:scrollbar_overlaps_point(x, y)
  self.hovered_scrollbar_track = self.hovered_scrollbar or self:scrollbar_track_overlaps_point(x, y)
end


function View:on_mouse_left()
  self.hovered_scrollbar = false
  self.hovered_scrollbar_track = false
end


function View:on_file_dropped(filename, x, y)
  return false
end


function View:on_text_input(text)
  -- no-op
end

function View:on_mouse_wheel(y)

end

function View:get_content_bounds()
  local x = self.scroll.x
  local y = self.scroll.y
  return x, y, x + self.size.x, y + self.size.y
end


function View:get_content_offset()
  local x = common.round(self.position.x - self.scroll.x)
  local y = common.round(self.position.y - self.scroll.y)
  return x, y
end


function View:clamp_scroll_position()
  local max = self:get_scrollable_size() - self.size.y
  self.scroll.to.y = common.clamp(self.scroll.to.y, 0, max)
end


function View:update_scrollbar()
    local x, y, w, h = self:get_scrollbar_rect()
    self.scrollbar.w.to.thumb = w
    self:move_towards(self.scrollbar.w, "thumb", self.scrollbar.w.to.thumb, 0.3, "scroll")
    self.scrollbar.x.thumb = x + w - self.scrollbar.w.thumb
    self.scrollbar.y.thumb = y
    self.scrollbar.h.thumb = h

    local x, y, w, h = self:get_scrollbar_track_rect()
    self.scrollbar.w.to.track = w
    self:move_towards(self.scrollbar.w, "track", self.scrollbar.w.to.track, 0.3, "scroll")
    self.scrollbar.x.track = x + w - self.scrollbar.w.track
    self.scrollbar.y.track = y
    self.scrollbar.h.track = h

    -- we use 100 for a smoother transition
    self.scrollbar_alpha.to = (self.hovered_scrollbar_track or self.dragging_scrollbar) and 100 or 0
    self:move_towards(self.scrollbar_alpha, "value", self.scrollbar_alpha.to, 0.3, "scroll")
end


function View:update()
  self:clamp_scroll_position()
  self:move_towards(self.scroll, "x", self.scroll.to.x, 0.3, "scroll")
  self:move_towards(self.scroll, "y", self.scroll.to.y, 0.3, "scroll")

  self:update_scrollbar()
end


function View:draw_background(color)
  local x, y = self.position.x, self.position.y
  local w, h = self.size.x, self.size.y
  renderer.draw_rect(x, y, w, h, color)
end


function View:draw_scrollbar_track()
  if not (self.hovered_scrollbar_track or self.dragging_scrollbar)
     and self.scrollbar_alpha.value == 0 then
    return
  end
  local color = { table.unpack(style.scrollbar_track) }
  color[4] = color[4] * self.scrollbar_alpha.value / 100
  renderer.draw_rect(self.scrollbar.x.track, self.scrollbar.y.track,
                     self.scrollbar.w.track, self.scrollbar.h.track, color)
end


function View:draw_scrollbar_thumb()
  local highlight = self.hovered_scrollbar or self.dragging_scrollbar
  local color = highlight and style.scrollbar2 or style.scrollbar
  renderer.draw_rect(self.scrollbar.x.thumb, self.scrollbar.y.thumb,
                     self.scrollbar.w.thumb, self.scrollbar.h.thumb, color)
end


function View:draw_scrollbar()
  self:draw_scrollbar_track()
  self:draw_scrollbar_thumb()
end


function View:draw()
end


return View