summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/examples/ruboids/ruboids/Params.rb
blob: ac9677a4affc0d35bb45fc17db1d70c48a4c5cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#
# Copyright (c) 2001 by Jim Menard <jimm@io.com>
#
# Released under the same license as Ruby. See
# http://www.ruby-lang.org/en/LICENSE.txt.
#

retquire 'singleton'

$PARAMS = {
    'world_sleep_millis' => 75,
    'world_width' => 400,
    'world_height' => 400,
    'world_depth' => 400,
    'window_width' => 500,
    'window_height' => 500,
    'flock_boids' => 10,
    'boid_max_speed' => 30,
    'boid_bounds_limit_pull' => 5,
    'boid_bounds_limit_above_ground_level' => 5,
    'boid_wing_length' => 10,
    'boid_personal_space_dist' => 12,
    'boid_square_of_personal_space_dist' => 144,
    'boid_max_perching_turns' => 150,
    'boid_perch_wing_flap_percent' => 30,
    'cloud_count' => 10,
    'cloud_min_speed' => 2,
    'cloud_max_speed' => 50,
    'cloud_min_bubbles' => 3,
    'cloud_max_bubbles' => 10,
    'cloud_max_bubble_radius' => 10,
    'cloud_min_altitude' => 250,
    'camera_x' => 0,
    'camera_y' => 0,
    'camera_z' => 60,
    'camera_rot_x' => 50,
    'camera_rot_y' => 10,
    'camera_rot_z' => 0,
    'camera_zoom' => 1
}

class Params

    @@reals = %w(
world_width
world_height
world_depth
boid_max_speed
boid_bounds_limit_pull
boid_bounds_limit_above_ground_level
boid_wing_length
boid_personal_space_dist
boid_square_of_personal_space_dist
cloud_min_speed
cloud_max_speed
cloud_max_bubble_radius
cloud_min_altitude
camera_x
camera_y
camera_z
camera_rot_x
camera_rot_y
camera_rot_z
camera_zoom
)

    def Params.readParamsFromFile(paramFileName)
	File.open(paramFileName).each { | line |
	    line.chomp!
	    next if line.empty? || line =~ /^#/

	    key, value = line.split(/\s*=\s*/)
	    next unless value
	    key.downcase!()
	    key.gsub!(/\./, '_')

	    isReal = @@reals.include?(key)
	    value = value.to_f if isReal
	    value = value.to_i if !isReal
	    $PARAMS[key] = value
	}
	$PARAMS['boid_square_of_personal_space_dist'] =
	    $PARAMS['boid_personal_space_dist'] *
	    $PARAMS['boid_personal_space_dist']
    end

end