Sha256: 5d48d6b68b421c1337fdafa583e9eb52f722e29c9920d0ca609dc03852438011
Contents?: true
Size: 1.63 KB
Versions: 1
Compression:
Stored size: 1.63 KB
Contents
require 'shoes/color' require 'json' module PirateGame module Boot DARK_COLOR = '#696969' #dimgray LIGHT_COLOR = '#dcdcdc' #gainsboro SKY_COLOR = '#00ffff' #aqua PUB_COLOR = '#52352b' #brown COLORS = {dark: DARK_COLOR, light: LIGHT_COLOR, sky: SKY_COLOR, pub: PUB_COLOR} BLUE_COLORS = [ Shoes::COLORS[:cornflowerblue], Shoes::COLORS[:darkcyan], Shoes::COLORS[:deepskyblue], Shoes::COLORS[:mediumturquoise], Shoes::COLORS[:steelblue], Shoes::COLORS[:teal], Shoes::COLORS[:turquoise] ] GREEN_COLORS = [Shoes::COLORS[:lightseagreen], Shoes::COLORS[:mediumaquamarine], Shoes::COLORS[:mediumseagreen], Shoes::COLORS[:seagreen], Shoes::COLORS[:teal] ] def self.config_file File.expand_path '../../../config.json', __FILE__ end def self.config_hash begin JSON.parse(open(self.config_file).read) rescue {"stage_duration" => 30, "action_duration" => 8} end end def self.config @config ||= self.config_hash @config end def self.waving_offset(frame, seed, delta_x, delta_y, speed = :normal) t1 = frame + seed t2 = frame + seed * 2 vel = 10.0 case speed when :slow vel = 20.0 when :fast vel = 2.0 delta_x *= 2 delta_y *= 2 end offset_x = Math.sin(t1/vel) * delta_x offset_y = Math.cos(t2/vel) * delta_y return offset_x, offset_y end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pirate_game-0.0.1 | lib/pirate_game/boot.rb |