mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-15 07:32:35 +00:00
54 lines
1.4 KiB
Ruby
54 lines
1.4 KiB
Ruby
class IMICFPS
|
|
class Light
|
|
attr_reader :ambient, :diffuse, :specular, :position, :light_id
|
|
attr_accessor :x, :y, :z, :intensity
|
|
def initialize(id:, x:,y:,z:,
|
|
ambient: Vector.new(0.5, 0.5, 0.5, 1),
|
|
diffuse: Vector.new(1, 0.5, 0, 1), specular: Vector.new(0.2, 0.2, 0.2, 1),
|
|
position: Vector.new(x, y, z, 0), intensity: 1)
|
|
@light_id = id
|
|
@x,@y,@z = x,y,z
|
|
@intensity = intensity
|
|
|
|
self.ambient = ambient
|
|
self.diffuse = diffuse
|
|
self.specular = specular
|
|
self.position = position
|
|
end
|
|
|
|
def ambient=(color)
|
|
@ambient = convert(color).pack("f*")
|
|
end
|
|
|
|
def diffuse=(color)
|
|
@diffuse = convert(color, true).pack("f*")
|
|
end
|
|
|
|
def specular=(color)
|
|
@specular = convert(color, true).pack("f*")
|
|
end
|
|
|
|
def position=(vertex)
|
|
@position = convert(vertex).pack("f*")
|
|
end
|
|
|
|
def draw
|
|
glLightfv(@light_id, GL_AMBIENT, @ambient)
|
|
glLightfv(@light_id, GL_DIFFUSE, @diffuse)
|
|
glLightfv(@light_id, GL_SPECULAR, @specular)
|
|
glLightfv(@light_id, GL_POSITION, @position)
|
|
glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, 1)
|
|
glEnable(GL_LIGHTING)
|
|
glEnable(@light_id)
|
|
end
|
|
|
|
def convert(struct, apply_intensity = false)
|
|
if apply_intensity
|
|
return struct.to_a.compact.map{|i| i*@intensity}
|
|
else
|
|
return struct.to_a.compact
|
|
end
|
|
end
|
|
end
|
|
end
|