|
|
@ -3,8 +3,8 @@ require "gosu" |
|
|
|
load "physobj.rb" |
|
|
|
load "physobj.rb" |
|
|
|
|
|
|
|
|
|
|
|
class Window < Gosu::Window |
|
|
|
class Window < Gosu::Window |
|
|
|
attr_accessor :freeze, :caption, :physobjs, :planets |
|
|
|
attr_accessor :freeze, :caption, :physobjs, :planets, :controller |
|
|
|
attr_reader :width, :height |
|
|
|
attr_reader :width, :height, :fonts |
|
|
|
|
|
|
|
|
|
|
|
def initialize(title, width, height, physobjs = [], planets = []) |
|
|
|
def initialize(title, width, height, physobjs = [], planets = []) |
|
|
|
super width, height |
|
|
|
super width, height |
|
|
@ -14,19 +14,38 @@ class Window < Gosu::Window |
|
|
|
@physobjs = physobjs |
|
|
|
@physobjs = physobjs |
|
|
|
@planets = planets |
|
|
|
@planets = planets |
|
|
|
|
|
|
|
|
|
|
|
@font = Gosu::Font.new(self, Gosu::default_font_name, 12) |
|
|
|
@font = Gosu::Font.new(self, Gosu::default_font_name, 14) |
|
|
|
@font2 = Gosu::Font.new(self, Gosu::default_font_name, 18) |
|
|
|
@font2 = Gosu::Font.new(self, Gosu::default_font_name, 20) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@fonts = { |
|
|
|
|
|
|
|
normal: @font, |
|
|
|
|
|
|
|
big: @font2 |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@freeze = false |
|
|
|
@freeze = false |
|
|
|
|
|
|
|
@controller = nil |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def button_up(id) |
|
|
|
def button_up(id) |
|
|
|
super id |
|
|
|
super id |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if( @controller != nil ) then |
|
|
|
|
|
|
|
@controller.button_up(id) |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
if( id == Gosu::KbEscape ) then |
|
|
|
if( id == Gosu::KbEscape ) then |
|
|
|
@freeze = !@freeze |
|
|
|
@freeze = !@freeze |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def button_down(id) |
|
|
|
|
|
|
|
super id |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if( @controller != nil ) then |
|
|
|
|
|
|
|
@controller.button_down(id) |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def update |
|
|
|
def update |
|
|
|
if( !@freeze ) then |
|
|
|
if( !@freeze ) then |
|
|
|
@physobjs.each do |obj| |
|
|
|
@physobjs.each do |obj| |
|
|
@ -40,20 +59,18 @@ class Window < Gosu::Window |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
private def generate_debug_string(obj) |
|
|
|
private def generate_debug_string(obj) |
|
|
|
return "\n#{obj.name}\nVel: #{obj.vel.round(4)} (#{obj.vel.magnitude.round(1)})\nAccel: #{obj.accel.round(4)} (#{obj.accel.magnitude.round(4)})\nPos: #{obj.pos.round(4)}\n" |
|
|
|
return "\n#{obj.name}\nVel: #{obj.vel.round(4)} (#{obj.vel.magnitude.round(1)})\nAccel: #{obj.accel.round(4)} (#{obj.accel.magnitude.round(4)})\nPos: #{obj.pos.round(4)}\n" |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def draw |
|
|
|
def draw |
|
|
|
status_text = @freeze ? "FROZEN (Escape to unfreeze)" : "(Escape to freeze)" |
|
|
|
@font2.draw("Frozen: #{@freeze}", 0, 0, 1, 1.0, 1.0, Gosu::Color::WHITE) |
|
|
|
@font2.draw(status_text, 0, 0, 1, 1.0, 1.0, Gosu::Color::WHITE) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@physobjs.each do |obj| |
|
|
|
@physobjs.each do |obj| |
|
|
|
obj.render |
|
|
|
obj.render |
|
|
|
obj.draw_vector(obj.vel, 10) |
|
|
|
obj.draw_vector(obj.vel, 10) |
|
|
|
obj.draw_vector(obj.accel, 500, 0xff_aaffaa) |
|
|
|
obj.draw_vector(obj.accel, 500, 0xff_aaffaa) |
|
|
|
obj.render_path |
|
|
|
obj.render_path |
|
|
|
|
|
|
|
obj.draw_direction |
|
|
|
@font.draw(self.generate_debug_string(obj), obj.pos[0], obj.pos[1], 1, 1.0, 1.0, Gosu::Color.argb(0xee_aaaaff)) |
|
|
|
|
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
@planets.each do |planet| |
|
|
|
@planets.each do |planet| |
|
|
@ -67,14 +84,18 @@ window = Window.new("Physics!", 1600, 900) |
|
|
|
|
|
|
|
|
|
|
|
planet = Planet.new("Sol", window, 0xff_ffffaa, 1e2, 20, 120) |
|
|
|
planet = Planet.new("Sol", window, 0xff_ffffaa, 1e2, 20, 120) |
|
|
|
planet.pos = Vector[800, 450] |
|
|
|
planet.pos = Vector[800, 450] |
|
|
|
|
|
|
|
planet.show_info = true |
|
|
|
|
|
|
|
|
|
|
|
cube = PhysCube.new("Cube", window, 8, 8) |
|
|
|
cube = Player.new("Alpha", window, 8, 8) |
|
|
|
|
|
|
|
cube.show_info = true |
|
|
|
cube.pos = Vector[800, 450 + 200] |
|
|
|
cube.pos = Vector[800, 450 + 200] |
|
|
|
cube.vel = Vector[2.5, 0] |
|
|
|
cube.vel = Vector[2.5, 0] |
|
|
|
|
|
|
|
window.controller = cube |
|
|
|
|
|
|
|
|
|
|
|
cube2 = PhysCube.new("Cube2", window, 8, 8) |
|
|
|
cube2 = PhysCube.new("Beta", window, 8, 8) |
|
|
|
cube2.pos = Vector[800, 450 - 200] |
|
|
|
cube2.pos = Vector[800, 450 + 300] |
|
|
|
cube2.vel = Vector[-2.5, 0] |
|
|
|
cube2.vel = Vector[-2.5, 0] |
|
|
|
|
|
|
|
|
|
|
|
planet.orbit([cube, cube2]) |
|
|
|
planet.orbit([cube, cube2]) |
|
|
|
|
|
|
|
|
|
|
|
window.planets << planet |
|
|
|
window.planets << planet |
|
|
|