rpg-tools 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. data/.gitignore +15 -0
  2. data/.rspec +1 -0
  3. data/.travis.yml +6 -0
  4. data/.yardopts +3 -0
  5. data/Gemfile +3 -0
  6. data/LICENSE.txt +20 -0
  7. data/README.textile +28 -0
  8. data/Rakefile +27 -0
  9. data/app/models/tools/check_roll.rb +82 -0
  10. data/app/models/tools/die.rb +35 -0
  11. data/app/models/tools/throw.rb +71 -0
  12. data/config/locales/en.yml +11 -0
  13. data/lib/generators/rpg_tools/install_generator.rb +21 -0
  14. data/lib/generators/rpg_tools/templates/initializer.rb +3 -0
  15. data/lib/rpg_tools.rb +11 -0
  16. data/lib/rpg_tools/engine.rb +11 -0
  17. data/rpg_tools.gemspec +30 -0
  18. data/spec/dummy/Gemfile +6 -0
  19. data/spec/dummy/Rakefile +7 -0
  20. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  21. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  22. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  23. data/spec/dummy/config.ru +4 -0
  24. data/spec/dummy/config/application.rb +45 -0
  25. data/spec/dummy/config/boot.rb +10 -0
  26. data/spec/dummy/config/database.yml +22 -0
  27. data/spec/dummy/config/environment.rb +5 -0
  28. data/spec/dummy/config/environments/development.rb +26 -0
  29. data/spec/dummy/config/environments/production.rb +49 -0
  30. data/spec/dummy/config/environments/test.rb +35 -0
  31. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/spec/dummy/config/initializers/inflections.rb +10 -0
  33. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  34. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  35. data/spec/dummy/config/initializers/session_store.rb +8 -0
  36. data/spec/dummy/config/locales/en.yml +5 -0
  37. data/spec/dummy/config/routes.rb +60 -0
  38. data/spec/dummy/db/test.sqlite3 +0 -0
  39. data/spec/dummy/public/404.html +26 -0
  40. data/spec/dummy/public/422.html +26 -0
  41. data/spec/dummy/public/500.html +26 -0
  42. data/spec/dummy/public/favicon.ico +0 -0
  43. data/spec/dummy/public/javascripts/application.js +2 -0
  44. data/spec/dummy/public/javascripts/controls.js +965 -0
  45. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  46. data/spec/dummy/public/javascripts/effects.js +1123 -0
  47. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  48. data/spec/dummy/public/javascripts/rails.js +191 -0
  49. data/spec/dummy/public/stylesheets/.gitkeep +0 -0
  50. data/spec/dummy/public/stylesheets/scaffold.css +56 -0
  51. data/spec/dummy/script/rails +6 -0
  52. data/spec/integration/navigation_spec.rb +9 -0
  53. data/spec/models/tools/check_roll_spec.rb +116 -0
  54. data/spec/models/tools/die_spec.rb +29 -0
  55. data/spec/models/tools/throw_spec.rb +55 -0
  56. data/spec/rpg_tools_spec.rb +7 -0
  57. data/spec/spec_helper.rb +36 -0
  58. metadata +216 -0
@@ -0,0 +1,191 @@
1
+ (function() {
2
+ // Technique from Juriy Zaytsev
3
+ // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
4
+ function isEventSupported(eventName) {
5
+ var el = document.createElement('div');
6
+ eventName = 'on' + eventName;
7
+ var isSupported = (eventName in el);
8
+ if (!isSupported) {
9
+ el.setAttribute(eventName, 'return;');
10
+ isSupported = typeof el[eventName] == 'function';
11
+ }
12
+ el = null;
13
+ return isSupported;
14
+ }
15
+
16
+ function isForm(element) {
17
+ return Object.isElement(element) && element.nodeName.toUpperCase() == 'FORM'
18
+ }
19
+
20
+ function isInput(element) {
21
+ if (Object.isElement(element)) {
22
+ var name = element.nodeName.toUpperCase()
23
+ return name == 'INPUT' || name == 'SELECT' || name == 'TEXTAREA'
24
+ }
25
+ else return false
26
+ }
27
+
28
+ var submitBubbles = isEventSupported('submit'),
29
+ changeBubbles = isEventSupported('change')
30
+
31
+ if (!submitBubbles || !changeBubbles) {
32
+ // augment the Event.Handler class to observe custom events when needed
33
+ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap(
34
+ function(init, element, eventName, selector, callback) {
35
+ init(element, eventName, selector, callback)
36
+ // is the handler being attached to an element that doesn't support this event?
37
+ if ( (!submitBubbles && this.eventName == 'submit' && !isForm(this.element)) ||
38
+ (!changeBubbles && this.eventName == 'change' && !isInput(this.element)) ) {
39
+ // "submit" => "emulated:submit"
40
+ this.eventName = 'emulated:' + this.eventName
41
+ }
42
+ }
43
+ )
44
+ }
45
+
46
+ if (!submitBubbles) {
47
+ // discover forms on the page by observing focus events which always bubble
48
+ document.on('focusin', 'form', function(focusEvent, form) {
49
+ // special handler for the real "submit" event (one-time operation)
50
+ if (!form.retrieve('emulated:submit')) {
51
+ form.on('submit', function(submitEvent) {
52
+ var emulated = form.fire('emulated:submit', submitEvent, true)
53
+ // if custom event received preventDefault, cancel the real one too
54
+ if (emulated.returnValue === false) submitEvent.preventDefault()
55
+ })
56
+ form.store('emulated:submit', true)
57
+ }
58
+ })
59
+ }
60
+
61
+ if (!changeBubbles) {
62
+ // discover form inputs on the page
63
+ document.on('focusin', 'input, select, texarea', function(focusEvent, input) {
64
+ // special handler for real "change" events
65
+ if (!input.retrieve('emulated:change')) {
66
+ input.on('change', function(changeEvent) {
67
+ input.fire('emulated:change', changeEvent, true)
68
+ })
69
+ input.store('emulated:change', true)
70
+ }
71
+ })
72
+ }
73
+
74
+ function handleRemote(element) {
75
+ var method, url, params;
76
+
77
+ var event = element.fire("ajax:before");
78
+ if (event.stopped) return false;
79
+
80
+ if (element.tagName.toLowerCase() === 'form') {
81
+ method = element.readAttribute('method') || 'post';
82
+ url = element.readAttribute('action');
83
+ params = element.serialize();
84
+ } else {
85
+ method = element.readAttribute('data-method') || 'get';
86
+ url = element.readAttribute('href');
87
+ params = {};
88
+ }
89
+
90
+ new Ajax.Request(url, {
91
+ method: method,
92
+ parameters: params,
93
+ evalScripts: true,
94
+
95
+ onComplete: function(request) { element.fire("ajax:complete", request); },
96
+ onSuccess: function(request) { element.fire("ajax:success", request); },
97
+ onFailure: function(request) { element.fire("ajax:failure", request); }
98
+ });
99
+
100
+ element.fire("ajax:after");
101
+ }
102
+
103
+ function handleMethod(element) {
104
+ var method = element.readAttribute('data-method'),
105
+ url = element.readAttribute('href'),
106
+ csrf_param = $$('meta[name=csrf-param]')[0],
107
+ csrf_token = $$('meta[name=csrf-token]')[0];
108
+
109
+ var form = new Element('form', { method: "POST", action: url, style: "display: none;" });
110
+ element.parentNode.insert(form);
111
+
112
+ if (method !== 'post') {
113
+ var field = new Element('input', { type: 'hidden', name: '_method', value: method });
114
+ form.insert(field);
115
+ }
116
+
117
+ if (csrf_param) {
118
+ var param = csrf_param.readAttribute('content'),
119
+ token = csrf_token.readAttribute('content'),
120
+ field = new Element('input', { type: 'hidden', name: param, value: token });
121
+ form.insert(field);
122
+ }
123
+
124
+ form.submit();
125
+ }
126
+
127
+
128
+ document.on("click", "*[data-confirm]", function(event, element) {
129
+ var message = element.readAttribute('data-confirm');
130
+ if (!confirm(message)) event.stop();
131
+ });
132
+
133
+ document.on("click", "a[data-remote]", function(event, element) {
134
+ if (event.stopped) return;
135
+ handleRemote(element);
136
+ event.stop();
137
+ });
138
+
139
+ document.on("click", "a[data-method]", function(event, element) {
140
+ if (event.stopped) return;
141
+ handleMethod(element);
142
+ event.stop();
143
+ });
144
+
145
+ document.on("submit", function(event) {
146
+ var element = event.findElement(),
147
+ message = element.readAttribute('data-confirm');
148
+ if (message && !confirm(message)) {
149
+ event.stop();
150
+ return false;
151
+ }
152
+
153
+ var inputs = element.select("input[type=submit][data-disable-with]");
154
+ inputs.each(function(input) {
155
+ input.disabled = true;
156
+ input.writeAttribute('data-original-value', input.value);
157
+ input.value = input.readAttribute('data-disable-with');
158
+ });
159
+
160
+ var element = event.findElement("form[data-remote]");
161
+ if (element) {
162
+ handleRemote(element);
163
+ event.stop();
164
+ }
165
+ });
166
+
167
+ document.on("ajax:after", "form", function(event, element) {
168
+ var inputs = element.select("input[type=submit][disabled=true][data-disable-with]");
169
+ inputs.each(function(input) {
170
+ input.value = input.readAttribute('data-original-value');
171
+ input.removeAttribute('data-original-value');
172
+ input.disabled = false;
173
+ });
174
+ });
175
+
176
+ Ajax.Responders.register({
177
+ onCreate: function(request) {
178
+ var csrf_meta_tag = $$('meta[name=csrf-token]')[0];
179
+
180
+ if (csrf_meta_tag) {
181
+ var header = 'X-CSRF-Token',
182
+ token = csrf_meta_tag.readAttribute('content');
183
+
184
+ if (!request.options.requestHeaders) {
185
+ request.options.requestHeaders = {};
186
+ }
187
+ request.options.requestHeaders[header] = token;
188
+ }
189
+ }
190
+ });
191
+ })();
File without changes
@@ -0,0 +1,56 @@
1
+ body { background-color: #fff; color: #333; }
2
+
3
+ body, p, ol, ul, td {
4
+ font-family: verdana, arial, helvetica, sans-serif;
5
+ font-size: 13px;
6
+ line-height: 18px;
7
+ }
8
+
9
+ pre {
10
+ background-color: #eee;
11
+ padding: 10px;
12
+ font-size: 11px;
13
+ }
14
+
15
+ a { color: #000; }
16
+ a:visited { color: #666; }
17
+ a:hover { color: #fff; background-color:#000; }
18
+
19
+ div.field, div.actions {
20
+ margin-bottom: 10px;
21
+ }
22
+
23
+ #notice {
24
+ color: green;
25
+ }
26
+
27
+ .field_with_errors {
28
+ padding: 2px;
29
+ background-color: red;
30
+ display: table;
31
+ }
32
+
33
+ #error_explanation {
34
+ width: 450px;
35
+ border: 2px solid red;
36
+ padding: 7px;
37
+ padding-bottom: 0;
38
+ margin-bottom: 20px;
39
+ background-color: #f0f0f0;
40
+ }
41
+
42
+ #error_explanation h2 {
43
+ text-align: left;
44
+ font-weight: bold;
45
+ padding: 5px 5px 5px 15px;
46
+ font-size: 12px;
47
+ margin: -7px;
48
+ margin-bottom: 0px;
49
+ background-color: #c00;
50
+ color: #fff;
51
+ }
52
+
53
+ #error_explanation ul li {
54
+ font-size: 12px;
55
+ list-style: square;
56
+ }
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby1.8
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,9 @@
1
+ require 'spec_helper'
2
+
3
+ describe "Navigation" do
4
+ include Capybara
5
+
6
+ it "should be a valid app" do
7
+ ::Rails.application.should be_a(Dummy::Application)
8
+ end
9
+ end
@@ -0,0 +1,116 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
2
+
3
+
4
+
5
+ describe Tools::CheckRoll do
6
+ describe "basic funtionality" do
7
+ before do
8
+ @dice = [Tools::Die.new(20),Tools::Die.new(6),Tools::Die.new(20),Tools::Die.new(4),Tools::Die.new(20),
9
+ Tools::Die.new(100),Tools::Die.new(4),Tools::Die.new(100)]
10
+ @offset = 25
11
+ @throw = Tools::Throw.new @dice,@offset
12
+ @threshold = 20
13
+
14
+ @check_roll = Tools::CheckRoll.new @throw, @threshold
15
+ end
16
+
17
+ it "should create a CheckRoll" do
18
+ assert @check_roll
19
+ end
20
+
21
+ it "should roll a CheckRoll" do
22
+ roll = @check_roll.roll
23
+ assert roll
24
+ assert roll[0]
25
+ assert roll[1]
26
+ end
27
+
28
+ it "should reroll a CheckRoll" do
29
+ roll = @check_roll.roll
30
+ roll = @check_roll.reroll
31
+ assert roll
32
+ assert roll[0]
33
+ assert roll[1]
34
+ end
35
+
36
+ it "should roll a CheckRoll with several rolling chances" do
37
+ @check_roll.rolling_chances = 10
38
+ roll = @check_roll.roll
39
+ assert roll
40
+ assert roll[0]
41
+ assert roll[1]
42
+ end
43
+
44
+ it "should reroll a CheckRoll with several rolling chance" do
45
+ @check_roll.rolling_chances = 10
46
+ roll = @check_roll.roll
47
+ roll = @check_roll.reroll
48
+ assert roll
49
+ assert roll[0]
50
+ assert roll[1]
51
+ end
52
+
53
+ it "should check if a CheckRoll was succesful after rolled" do
54
+ roll = @check_roll.roll
55
+ assert @check_roll.is_successful?.is_a? TrueClass
56
+ end
57
+
58
+ it "should check if a CheckRoll was succesful and roll it if not rolled" do
59
+ assert @check_roll.is_successful?.is_a? TrueClass
60
+ end
61
+
62
+ it "should turn a CheckRoll into a String" do
63
+ string = "#{@throw.to_s} #{I18n.t('rpg_tools.check_roll.must_be')} #{I18n.t('rpg_tools.check_roll.greater_and_equal')} #{@check_roll.threshold}."
64
+ assert @check_roll.to_s.eql? string
65
+ end
66
+ end
67
+
68
+ it "should check a greater or equal to threshold" do
69
+ @dice = [Tools::Die.new(1)]
70
+ @offset = 19
71
+ @throw = Tools::Throw.new @dice,@offset
72
+ @threshold = 20
73
+ @check_roll = Tools::CheckRoll.new @throw, @threshold, 1, true, true
74
+ assert @check_roll.is_successful?
75
+ @check_roll.threshold = 15
76
+ @check_roll.reroll
77
+ assert @check_roll.is_successful?
78
+ end
79
+
80
+ it "should check a greater than threshold" do
81
+ @dice = [Tools::Die.new(1)]
82
+ @offset = 19
83
+ @throw = Tools::Throw.new @dice,@offset
84
+ @threshold = 20
85
+ @check_roll = Tools::CheckRoll.new @throw, @threshold, 1, true, false
86
+ assert !@check_roll.is_successful?
87
+ @check_roll.threshold = 15
88
+ @check_roll.reroll
89
+ assert @check_roll.is_successful?
90
+ end
91
+
92
+ it "should check a less than threshold" do
93
+ @dice = [Tools::Die.new(1)]
94
+ @offset = 19
95
+ @throw = Tools::Throw.new @dice,@offset
96
+ @threshold = 20
97
+ @check_roll = Tools::CheckRoll.new @throw, @threshold, 1, false, false
98
+ assert !@check_roll.is_successful?
99
+ @check_roll.threshold = 25
100
+ @check_roll.reroll
101
+ assert @check_roll.is_successful?
102
+ end
103
+
104
+ it "should check a less or equal to threshold" do
105
+ @dice = [Tools::Die.new(1)]
106
+ @offset = 19
107
+ @throw = Tools::Throw.new @dice,@offset
108
+ @threshold = 20
109
+ @check_roll = Tools::CheckRoll.new @throw, @threshold, 1, false, true
110
+ assert @check_roll.is_successful?
111
+ @check_roll.threshold = 25
112
+ @check_roll.reroll
113
+ assert @check_roll.is_successful?
114
+ end
115
+
116
+ end
@@ -0,0 +1,29 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
2
+
3
+ describe Tools::Die do
4
+
5
+ before do
6
+ @die = Tools::Die.new 20
7
+ end
8
+
9
+ it "should create a Die" do
10
+ assert @die
11
+ end
12
+
13
+ it "should roll a Die once" do
14
+ assert @die.roll
15
+ end
16
+
17
+ it "should roll a Die many times" do
18
+ results = @die.roll 30
19
+ assert results
20
+ results.each do |result|
21
+ assert result
22
+ end
23
+ end
24
+
25
+ it "should turn a Die into a String" do
26
+ assert @die.to_s.eql? "D20"
27
+ end
28
+
29
+ end
@@ -0,0 +1,55 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
2
+
3
+ describe Tools::Throw do
4
+
5
+ before do
6
+ @dice = [Tools::Die.new(20),Tools::Die.new(6),Tools::Die.new(20),Tools::Die.new(4),Tools::Die.new(20),
7
+ Tools::Die.new(100),Tools::Die.new(4),Tools::Die.new(100)]
8
+ @offset = 3
9
+ @throw = Tools::Throw.new @dice,@offset
10
+
11
+ end
12
+
13
+ it "should create a Trhow" do
14
+ assert @throw
15
+ end
16
+
17
+ it "should do a simple roll of a Throw once" do
18
+ assert @throw.roll
19
+ end
20
+
21
+ it "should do a detailed roll of a Throw once" do
22
+ detailed_roll = @throw.roll 1, true
23
+ assert detailed_roll
24
+ assert detailed_roll[0]
25
+ assert detailed_roll[1]
26
+ detailed_roll[1].each do |result|
27
+ assert result
28
+ end
29
+ end
30
+
31
+ it "should do a simple roll of a Throw many times" do
32
+ results = @throw.roll 30
33
+ assert results
34
+ results.each do |result|
35
+ assert result
36
+ end
37
+ end
38
+
39
+ it "should do a detailed roll of a Throw many times" do
40
+ detailed_rolls = @throw.roll 30, true
41
+ assert detailed_rolls
42
+ detailed_rolls.each do |detailed_roll|
43
+ assert detailed_roll[0]
44
+ assert detailed_roll[1]
45
+ detailed_roll[1].each do |result|
46
+ assert result
47
+ end
48
+ end
49
+ end
50
+
51
+ it "should turn a Throw into a String" do
52
+ assert @throw.to_s.eql? "2D4,1D6,3D20,2D100+3"
53
+ end
54
+
55
+ end