Hohmann Miner, a sandbox physics game where you mine stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hohmann-miner/physobj.rb

197 lines
4.7 KiB

3 years ago
require "matrix"
3 years ago
load "gosu_plugin.rb"
3 years ago
3 years ago
GRAV_CONSTANT = 1e+1
3 years ago
MAX_PATH_TRACK_POINT = 1000
3 years ago
3 years ago
class PhysObj
3 years ago
attr_accessor :world, :saved_pos, :pos, :vel, :accel, :x, :y, :show_info, :angle, :parent_orbit
3 years ago
attr_reader :name
def initialize(name, world)
@name = name
3 years ago
@world = world
@pos = Vector.zero(2)
@vel = Vector.zero(2)
@accel = Vector.zero(2)
@x, @y = 0, 0
3 years ago
@saved_pos = []
3 years ago
@show_info = false
@angle = 0
3 years ago
@parent_orbit = ""
3 years ago
end
def tick
3 years ago
@x, @y = @pos[0], @pos[1]
@angle %= 360
3 years ago
if( !world.freeze ) then
if( @accel.magnitude != 0 ) then
@vel += @accel
end
if( @vel.magnitude != 0 ) then
@pos += @vel
end
@saved_pos << @pos
3 years ago
if(@saved_pos.length > MAX_PATH_TRACK_POINT) then
3 years ago
@saved_pos = @saved_pos[1..-1]
end
3 years ago
end
3 years ago
end
3 years ago
def render_path(x_offset=0, y_offset=0)
3 years ago
@saved_pos.each do |pos|
3 years ago
Gosu.draw_rect(pos[0] + x_offset, pos[1] + y_offset, 1, 1, Gosu::Color.argb(0x44_ccccff))
3 years ago
end
3 years ago
end
3 years ago
private def debug_string
3 years ago
return "\n#{self.name} - #{self.parent_orbit.name}\nVel: #{self.vel.magnitude.round(1)} #{self.vel.round(4)}\nAccel: #{self.accel.magnitude.round(4)} #{self.accel.round(4)}\nPos: #{self.pos.round(4)}\nAngle: #{self.angle.round(1)} deg\n"
3 years ago
end
3 years ago
def render(x_offset=0, y_offset=0, color=Gosu::Color.argb(0xaa_2222ff))
if( @show_info ) then
3 years ago
self.world.fonts[:normal].draw_text(self.debug_string, self.pos[0] + x_offset, self.pos[1] + y_offset, 1, 1.0, 1.0, color)
3 years ago
end
3 years ago
end
3 years ago
3 years ago
def draw_vector(vec, scale=2, color=0xaf_ffaaaa, x_offset=0, y_offset=0)
3 years ago
if( vec.magnitude != 0 ) then
clr = Gosu::Color.argb(color)
scaled_vec = vec*scale
3 years ago
pos1 = Vector[x_offset, y_offset] + self.pos + Vector[self.width/2, self.height/2]
3 years ago
pos2 = pos1 + scaled_vec
x1 = pos1[0]
y1 = pos1[1]
x2 = pos2[0]
y2 = pos2[1]
Gosu.draw_line(x1, y1, clr, x2, y2, clr)
end
3 years ago
end
3 years ago
def draw_direction(x_offset=0, y_offset=0)
3 years ago
rads = (self.angle * Math::PI) / 180
dir_vec = Vector[Math::cos(rads), Math::sin(rads)]
3 years ago
self.draw_vector(dir_vec, 25, 0xaf_aaaaff, x_offset, y_offset)
3 years ago
end
end
class PhysCube < PhysObj
attr_reader :width, :height
def initialize(name, world, width, height, color=0xff_ffffff)
super name, world
@width, @height = width, height
@color = Gosu::Color.argb(color)
end
3 years ago
def render(offset_x=0, offset_y=0)
super offset_x, offset_y, @color
x, y = offset_x + self.pos[0], offset_y + self.pos[1]
3 years ago
Gosu.draw_quad(x, y, @color, x + self.width, y, @color, x, y + self.height, @color, x + self.width, y + self.height, @color)
end
def physics
self.tick
end
3 years ago
end
3 years ago
3 years ago
class Planet < PhysObj
attr_reader :color, :mass, :radius, :circle_thickness
def initialize(name, world, color, mass=1e+2, radius=20, circle_thickness=4)
super name, world
@color = color
3 years ago
@mass = mass
3 years ago
@radius = radius
@circle_thickness = circle_thickness
3 years ago
end
3 years ago
3 years ago
private def calculate_gravity_scalar(obj, dir_vec)
grav = GRAV_CONSTANT * (self.mass/(dir_vec.magnitude**2))
return grav
3 years ago
end
private def calculate_gravity_vector(obj)
3 years ago
dir_vec = self.pos - obj.pos + Vector[@radius/2, @radius/2]
3 years ago
return (dir_vec/dir_vec.magnitude) * calculate_gravity_scalar(obj, dir_vec)
3 years ago
end
def orbit(physobjs)
physobjs.each do |obj|
grav_vec = self.calculate_gravity_vector(obj)
obj.accel = grav_vec
3 years ago
obj.parent_orbit = self
3 years ago
end
end
3 years ago
3 years ago
private def debug_string
return "\n#{self.name}\nPos: #{self.pos.round(4)}\nMass: #{self.mass.round(4)}\nRadius: #{self.radius.round(4)} p\nGravity: #{(self.mass*GRAV_CONSTANT).round(2)} p/r^2"
end
3 years ago
def render(x_offset=0, y_offset=0)
3 years ago
super @radius*3, @radius*3, Gosu::Color.argb(0xff_ffffff)
3 years ago
Gosu.draw_circle(self.pos[0] + x_offset, self.pos[1] + y_offset, @radius, @color, 0, @circle_thickness)
3 years ago
end
3 years ago
end
3 years ago
class Player < PhysCube
3 years ago
attr_accessor :engine, :thrust
3 years ago
def initialize(name, world, width, height, color=0xff_ffffff)
3 years ago
super name, world, width, height, color
3 years ago
@engine = false
@thrust = 0.001
end
private def get_angle_vec
rads = (self.angle * Math::PI) / 180
dir_vec = Vector[Math::cos(rads), Math::sin(rads)]
return dir_vec
end
def tick
super
3 years ago
if( @engine && !self.world.freeze ) then
3 years ago
self.vel += self.get_angle_vec * @thrust
end
3 years ago
end
def button_up(id)
3 years ago
end
def button_up?(id)
end
def button_down(id)
3 years ago
if( id == Gosu::KbSpace ) then
@engine = !@engine
end
if( id == Gosu::KbLeft ) then
self.angle -= 20
end
if( id == Gosu::KbRight ) then
self.angle += 20
end
3 years ago
end
3 years ago
def button_down?(id)
end
private def debug_string
3 years ago
return "\n#{self.name} - #{self.parent_orbit.name}\nVel: #{self.vel.magnitude.round(1)} #{self.vel.round(4)}\nAccel: #{self.accel.magnitude.round(4)} #{self.accel.round(4)}\nPos: #{self.pos.round(4)}\nAngle: #{self.angle.round(1)} deg\nEngine: #{self.engine}\nThrust: #{self.thrust}\n"
3 years ago
end
end