|
|
@ -2,6 +2,8 @@ |
|
|
|
|
|
|
|
|
|
|
|
require "matrix" |
|
|
|
require "matrix" |
|
|
|
require "gosu" |
|
|
|
require "gosu" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
require_relative "utils/debug.rb" |
|
|
|
require_relative "lib/gosu_plugin.rb" |
|
|
|
require_relative "lib/gosu_plugin.rb" |
|
|
|
|
|
|
|
|
|
|
|
require_relative "config.rb" |
|
|
|
require_relative "config.rb" |
|
|
@ -15,16 +17,6 @@ require_relative "lib/world.rb" |
|
|
|
|
|
|
|
|
|
|
|
require_relative "ui/mainmenu.rb" |
|
|
|
require_relative "ui/mainmenu.rb" |
|
|
|
|
|
|
|
|
|
|
|
def pause |
|
|
|
|
|
|
|
puts "Hej" |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def fire |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
def select |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Window < Gosu::Window |
|
|
|
class Window < Gosu::Window |
|
|
|
attr_accessor :caption, :ui, :world, :mainmenu, :key_events |
|
|
|
attr_accessor :caption, :ui, :world, :mainmenu, :key_events |
|
|
|
attr_reader :width, :height, :fonts |
|
|
|
attr_reader :width, :height, :fonts |
|
|
@ -46,11 +38,6 @@ class Window < Gosu::Window |
|
|
|
# Keyhook for down presses |
|
|
|
# Keyhook for down presses |
|
|
|
@down_keyhook = KeyHook.new |
|
|
|
@down_keyhook = KeyHook.new |
|
|
|
|
|
|
|
|
|
|
|
KEY_EVENTS[:general].each do |key, event| |
|
|
|
|
|
|
|
puts "Binding key '#{key}' to '#{event}'" |
|
|
|
|
|
|
|
@up_keyhook.add(key, :main, event) |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ui = [] |
|
|
|
@ui = [] |
|
|
|
@fonts = { |
|
|
|
@fonts = { |
|
|
|
normal: Gosu::Font.new(self, MAIN_FONT, 18), |
|
|
|
normal: Gosu::Font.new(self, MAIN_FONT, 18), |
|
|
@ -102,6 +89,8 @@ class Window < Gosu::Window |
|
|
|
print "up: " |
|
|
|
print "up: " |
|
|
|
p id |
|
|
|
p id |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@up_keyhook.call(KEY_EVENTS[id]) |
|
|
|
|
|
|
|
|
|
|
|
@key_events[:down].delete(id) # when the key is released: stop holding it |
|
|
|
@key_events[:down].delete(id) # when the key is released: stop holding it |
|
|
|
@key_events[:up] << id # append the key event to the queue |
|
|
|
@key_events[:up] << id # append the key event to the queue |
|
|
|
|
|
|
|
|
|
|
@ -131,6 +120,10 @@ class Window < Gosu::Window |
|
|
|
|
|
|
|
|
|
|
|
def update |
|
|
|
def update |
|
|
|
# Call all keybind hooks |
|
|
|
# Call all keybind hooks |
|
|
|
|
|
|
|
@key_events[:down].each do |key| |
|
|
|
|
|
|
|
@down_keyhook.call(key) |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
@key_events[:up].each do |key| |
|
|
|
@key_events[:up].each do |key| |
|
|
|
@up_keyhook.call(key) |
|
|
|
@up_keyhook.call(key) |
|
|
|
end |
|
|
|
end |
|
|
|