Minor refactor

pull/1/head
E. Almqvist 4 years ago
parent bb537ec0cb
commit 94436e47bf
  1. 16
      app.rb
  2. 28
      physobj.rb

@ -14,7 +14,7 @@ class Window < Gosu::Window
@physobjs = physobjs @physobjs = physobjs
@planets = planets @planets = planets
@font = Gosu::Font.new(self, Gosu::default_font_name, 14) @font = Gosu::Font.new(self, Gosu::default_font_name, 18)
@font2 = Gosu::Font.new(self, Gosu::default_font_name, 20) @font2 = Gosu::Font.new(self, Gosu::default_font_name, 20)
@fonts = { @fonts = {
@ -63,14 +63,12 @@ class Window < Gosu::Window
# end # end
def update def update
if( !@freeze ) then @physobjs.each do |obj|
@physobjs.each do |obj| obj.physics
obj.physics end
end
@planets.each do |planet|
@planets.each do |planet| planet.orbit(@physobjs)
planet.orbit(@physobjs)
end
end end
end end

@ -21,19 +21,21 @@ class PhysObj
end end
def tick def tick
if( @accel.magnitude != 0 ) then if( !world.freeze ) then
@vel += @accel if( @accel.magnitude != 0 ) then
end @vel += @accel
end
if( @vel.magnitude != 0 ) then
@pos += @vel if( @vel.magnitude != 0 ) then
end @pos += @vel
@x, @y = @pos[0], @pos[1] end
@angle %= 360 @x, @y = @pos[0], @pos[1]
@saved_pos << @pos @angle %= 360
@saved_pos << @pos
while(@saved_pos.length > MAX_PATH_TRACK_POINT) do
@saved_pos = @saved_pos[1..-1] while(@saved_pos.length > MAX_PATH_TRACK_POINT) do
@saved_pos = @saved_pos[1..-1]
end
end end
end end

Loading…
Cancel
Save