MINT-core 1.0.1 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (214) hide show
  1. data/Gemfile +22 -3
  2. data/Gemfile.lock +98 -22
  3. data/History.txt +262 -0
  4. data/LICENSE +30 -0
  5. data/MINT-core.gemspec +25 -80
  6. data/Manifest.txt +145 -30
  7. data/README.rdoc +6 -163
  8. data/Rakefile +16 -17
  9. data/bin/mint-aui +3 -3
  10. data/bin/mint-cui-gfx +3 -2
  11. data/bin/mint-juggernaut.sh +0 -0
  12. data/bin/mint-tuplespace +0 -0
  13. data/lib/MINT-core.rb +53 -15
  14. data/lib/MINT-core/agent/agent.rb +1 -1
  15. data/lib/MINT-core/agent/aui.rb +0 -14
  16. data/lib/MINT-core/agent/auicontrol.rb +91 -38
  17. data/lib/MINT-core/agent/cui-gfx.rb +3 -3
  18. data/lib/MINT-core/agent/cuicontrol.rb +94 -24
  19. data/lib/MINT-core/connector/redis_connector.rb +16 -0
  20. data/lib/MINT-core/manager/mapping_manager.rb +101 -0
  21. data/lib/MINT-core/manager/mapping_parser.rb +89 -0
  22. data/lib/MINT-core/manager/mapping_server.rb +99 -0
  23. data/lib/MINT-core/manager/position_updater.rb +33 -0
  24. data/lib/MINT-core/manager/scxml_client.rb +118 -0
  25. data/lib/MINT-core/manager/scxml_server.rb +86 -0
  26. data/lib/MINT-core/mapping/action/action.rb +32 -0
  27. data/lib/MINT-core/mapping/action/backend_action.rb +32 -0
  28. data/lib/MINT-core/mapping/action/bind_action.rb +88 -0
  29. data/lib/MINT-core/mapping/action/event_action.rb +40 -0
  30. data/lib/MINT-core/mapping/complementary_mapping.rb +31 -0
  31. data/lib/MINT-core/mapping/mapping.rb +170 -34
  32. data/lib/MINT-core/mapping/observation/negation_observation.rb +64 -0
  33. data/lib/MINT-core/mapping/observation/observation.rb +219 -0
  34. data/lib/MINT-core/mapping/sequential.rb +1 -2
  35. data/lib/MINT-core/mapping/sequential_mapping.rb +60 -0
  36. data/lib/MINT-core/model/aui/AIChoiceElement.rb +17 -0
  37. data/lib/MINT-core/model/aui/AICommand.rb +7 -0
  38. data/lib/MINT-core/model/aui/AIContainer.rb +73 -0
  39. data/lib/MINT-core/model/aui/AIContext.rb +12 -0
  40. data/lib/MINT-core/model/aui/AIIN.rb +8 -0
  41. data/lib/MINT-core/model/aui/AIINContinuous.rb +56 -0
  42. data/lib/MINT-core/model/aui/AIINDiscrete.rb +8 -0
  43. data/lib/MINT-core/model/aui/AIMultiChoice.rb +1 -2
  44. data/lib/MINT-core/model/aui/AIMultiChoiceElement.rb +4 -51
  45. data/lib/MINT-core/model/aui/AIO.rb +76 -123
  46. data/lib/MINT-core/model/aui/AIOUT.rb +8 -0
  47. data/lib/MINT-core/model/aui/AIOUTContinuous.rb +61 -0
  48. data/lib/MINT-core/model/aui/AIReference.rb +16 -0
  49. data/lib/MINT-core/model/aui/AISingleChoice.rb +18 -1
  50. data/lib/MINT-core/model/aui/AISingleChoiceElement.rb +10 -56
  51. data/lib/MINT-core/model/aui/AISinglePresence.rb +39 -71
  52. data/lib/MINT-core/model/aui/aicommand.scxml +47 -0
  53. data/lib/MINT-core/model/aui/aicontainer.scxml +41 -0
  54. data/lib/MINT-core/model/aui/aicontext.scxml +34 -0
  55. data/lib/MINT-core/model/aui/aiincontinuous.scxml +59 -0
  56. data/lib/MINT-core/model/aui/aiinrange.scxml +86 -0
  57. data/lib/MINT-core/model/aui/aimultichoice.scxml +67 -0
  58. data/lib/MINT-core/model/aui/aimultichoiceelement.scxml +51 -0
  59. data/lib/MINT-core/model/aui/aio.scxml +18 -27
  60. data/lib/MINT-core/model/aui/aioutcontinuous.scxml +66 -0
  61. data/lib/MINT-core/model/aui/aireference.scxml +28 -0
  62. data/lib/MINT-core/model/aui/aisinglechoice.scxml +60 -0
  63. data/lib/MINT-core/model/aui/aisinglechoiceelement.scxml +45 -60
  64. data/lib/MINT-core/model/aui/aisinglepresence.scxml +15 -24
  65. data/lib/MINT-core/model/aui/model.rb +15 -38
  66. data/lib/MINT-core/model/cui/gfx/CIC.rb +34 -10
  67. data/lib/MINT-core/model/cui/gfx/CIO.rb +66 -115
  68. data/lib/MINT-core/model/cui/gfx/CarouFredSel.scxml +58 -0
  69. data/lib/MINT-core/model/cui/gfx/MarkableRadioButton.rb +8 -0
  70. data/lib/MINT-core/model/cui/gfx/RadioButton.rb +8 -0
  71. data/lib/MINT-core/model/cui/gfx/RadioButtonGroup.rb +6 -0
  72. data/lib/MINT-core/model/cui/gfx/button.rb +16 -0
  73. data/lib/MINT-core/model/cui/gfx/button.scxml +58 -0
  74. data/lib/MINT-core/model/cui/gfx/caroufredsel.rb +48 -0
  75. data/lib/MINT-core/model/cui/gfx/cic.scxml +57 -0
  76. data/lib/MINT-core/model/cui/gfx/cio.scxml +54 -0
  77. data/lib/MINT-core/model/cui/gfx/markableradiobutton.scxml +67 -0
  78. data/lib/MINT-core/model/cui/gfx/model.rb +39 -176
  79. data/lib/MINT-core/model/cui/gfx/radiobutton.scxml +59 -0
  80. data/lib/MINT-core/model/interactor.rb +167 -46
  81. data/lib/MINT-core/model/interactor.scxml +3 -0
  82. data/lib/MINT-core/model/interactor_helpers.rb +25 -0
  83. data/lib/MINT-core/model/ir/body/OneHandPoseNavigation.rb +15 -0
  84. data/lib/MINT-core/model/ir/body/body.rb +5 -0
  85. data/lib/MINT-core/model/ir/body/fingertip.rb +114 -0
  86. data/lib/MINT-core/model/ir/body/fingertip.scxml +43 -0
  87. data/lib/MINT-core/model/{body → ir/body}/gesture_button.rb +0 -0
  88. data/lib/MINT-core/model/ir/body/hand.rb +5 -0
  89. data/lib/MINT-core/model/ir/body/head.rb +102 -0
  90. data/lib/MINT-core/model/ir/body/head.scxml +92 -0
  91. data/lib/MINT-core/model/ir/body/onehandposenavigation.scxml +53 -0
  92. data/lib/MINT-core/model/ir/body/pose.rb +99 -0
  93. data/lib/MINT-core/model/ir/browserscreen.rb +27 -0
  94. data/lib/MINT-core/model/ir/browserscreen.scxml +14 -0
  95. data/lib/MINT-core/model/{device → ir}/button.rb +1 -1
  96. data/lib/MINT-core/model/ir/ir.rb +5 -0
  97. data/lib/MINT-core/model/ir/irmedia.rb +5 -0
  98. data/lib/MINT-core/model/ir/irmode.rb +5 -0
  99. data/lib/MINT-core/model/{device → ir}/joypad.rb +1 -1
  100. data/lib/MINT-core/model/ir/mouse.rb +44 -0
  101. data/lib/MINT-core/model/ir/mouse.scxml +35 -0
  102. data/lib/MINT-core/model/{device/mouse.rb → ir/mouse_old.rb} +2 -2
  103. data/lib/MINT-core/model/{device → ir}/pointer.rb +20 -22
  104. data/lib/MINT-core/model/ir/pointer.scxml +19 -0
  105. data/lib/MINT-core/model/ir/screen.rb +5 -0
  106. data/lib/MINT-core/model/{device → ir}/wheel.rb +1 -1
  107. data/lib/MINT-core/model/mim/aicommand_activate_to_button_press.xml +13 -0
  108. data/lib/MINT-core/model/mim/aicommand_deactivate_to_button_release.xml +13 -0
  109. data/lib/MINT-core/model/mim/aio_defocus_to_cio_unhighlight.xml +13 -0
  110. data/lib/MINT-core/model/mim/aio_focus_to_cio_highlight.xml +14 -0
  111. data/lib/MINT-core/model/mim/aio_present_to_cio_display.xml +14 -0
  112. data/lib/MINT-core/model/mim/aio_suspend_to_cio_hide.xml +13 -0
  113. data/lib/MINT-core/model/mim/aisinglechoice_present_to_child_present.xml +14 -0
  114. data/lib/MINT-core/model/mim/aisinglechoiceelement_chosen_to_radiobutton_select.xml +13 -0
  115. data/lib/MINT-core/model/mim/aisinglechoiceelement_unchosen_to_radiobutton_unselect.xml +13 -0
  116. data/lib/MINT-core/model/mim/aisinglepresence_children_finished_to_caroufredsel_init_js.xml +14 -0
  117. data/lib/MINT-core/model/mim/aisinglepresence_present_to_child_present.xml +15 -0
  118. data/lib/MINT-core/model/mim/browserscreen_reload_to_cuicontrol_refresh_all.xml +12 -0
  119. data/lib/MINT-core/model/mim/button_press_to_aicommand_activate.xml +12 -0
  120. data/lib/MINT-core/model/mim/button_release_to_aicommand_deactivate.xml +12 -0
  121. data/lib/MINT-core/model/mim/caroufredsel_refreshing_to_caroufredsel_init_js.xml +14 -0
  122. data/lib/MINT-core/model/mim/cio_display_to_aio_defocus.xml +13 -0
  123. data/lib/MINT-core/model/mim/cio_display_to_aio_present.xml +12 -0
  124. data/lib/MINT-core/model/mim/cio_display_to_cio_display_cache_add.xml +11 -0
  125. data/lib/MINT-core/model/mim/cio_hide_to_aio_suspend.xml +12 -0
  126. data/lib/MINT-core/model/mim/cio_hide_to_cio_display_cache_remove.xml +12 -0
  127. data/lib/MINT-core/model/mim/cio_highlight_to_aio_focus.xml +13 -0
  128. data/lib/MINT-core/model/mim/head_looking_left_to_aisinglepresence_prev.xml +14 -0
  129. data/lib/MINT-core/model/mim/head_looking_right_to_aisinglepresence_next.xml +15 -0
  130. data/lib/MINT-core/model/mim/head_nodding_to_aisinglepresence_next.xml +15 -0
  131. data/lib/MINT-core/model/mim/head_tilting_left_to_aisinglepresence_prev.xml +14 -0
  132. data/lib/MINT-core/model/mim/head_tilting_right_to_aisinglepresence_next.xml +15 -0
  133. data/lib/MINT-core/model/mim/left_button_aisinglepresence_enter.xml +15 -0
  134. data/lib/MINT-core/model/mim/left_button_aisinglepresence_next.xml +15 -0
  135. data/lib/MINT-core/model/mim/mim_default.xml +52 -0
  136. data/lib/MINT-core/model/mim/mint-mappings.xsd +127 -0
  137. data/lib/MINT-core/model/mim/mouse_press_to_aicommand_activate.xml +17 -0
  138. data/lib/MINT-core/model/mim/mouse_press_to_aisinglechoiceelement_choose.xml +17 -0
  139. data/lib/MINT-core/model/mim/mouse_press_to_aisinglechoiceelement_unchoose.xml +17 -0
  140. data/lib/MINT-core/model/mim/mouse_release_to_aicommand_deactivate.xml +16 -0
  141. data/lib/MINT-core/model/mim/mouse_stop_to_cio_highlight.xml +13 -0
  142. data/lib/MINT-core/model/mim/onehandposnav_confirm_to_aichoiceelement_choose.xml +14 -0
  143. data/lib/MINT-core/model/mim/onehandposnav_next_to_aio_next.xml +14 -0
  144. data/lib/MINT-core/model/mim/onehandposnav_previous_to_aio_prev.xml +14 -0
  145. data/lib/MINT-core/model/mim/radiobutton_selected_to_aisinglechoiceelement_choose.xml +13 -0
  146. data/lib/MINT-core/model/mim/radiobutton_unselected_to_aisinglechoiceelement_unchoose.xml +13 -0
  147. data/lib/MINT-core/model/mim/right_button_aisinglepresence_prev.xml +15 -0
  148. data/lib/MINT-core/model/task.rb +6 -6
  149. data/script/console +0 -0
  150. data/script/destroy +0 -0
  151. data/script/generate +0 -0
  152. data/spec/AICommand_spec.rb +20 -0
  153. data/spec/AIContainer_spec.rb +161 -0
  154. data/spec/AIINContinuous_spec.rb +92 -0
  155. data/spec/AIOUTContinuous_spec.rb +93 -0
  156. data/spec/AIO_spec.rb +73 -0
  157. data/spec/AIReference_spec.rb +105 -0
  158. data/spec/AISinglePresence_spec.rb +204 -60
  159. data/spec/Button_spec.rb +114 -0
  160. data/spec/CIO_spec.rb +145 -0
  161. data/spec/Interactor_spec.rb +95 -0
  162. data/spec/MappingManager_spec.rb +126 -0
  163. data/spec/Spontaneous_spec.rb +53 -0
  164. data/spec/aio_agent_spec.rb +215 -186
  165. data/spec/aisinglechoice_spec.rb +147 -88
  166. data/spec/aisinglechoiceelement_spec.rb +154 -70
  167. data/spec/complementary_mapping_spec.rb +158 -0
  168. data/spec/core_spec.rb +27 -15
  169. data/spec/cui_helper.rb +100 -0
  170. data/spec/examples/browserscreen_reload_to_cuicontrol_refresh_all.xml +12 -0
  171. data/spec/examples/mim_streaming_example.xml +9 -0
  172. data/spec/examples/mouse_highlight.xml +22 -0
  173. data/spec/examples/performance_mapping.xml +15 -0
  174. data/spec/examples/reset_click.xml +24 -0
  175. data/spec/interactor_test.scxml +32 -0
  176. data/spec/interactor_test_2.scxml +16 -0
  177. data/spec/mapping_performance_spec.rb +118 -0
  178. data/spec/mapping_server_spec.rb +161 -0
  179. data/spec/mapping_spec.rb +307 -0
  180. data/spec/music_spec.rb +301 -135
  181. data/spec/performance_counter.scxml +9 -0
  182. data/spec/sequential_mappings_spec.rb +69 -0
  183. data/spec/shared/aio_shared.rb +144 -0
  184. data/spec/spec_helper.rb +22 -3
  185. data/spec/spontaneous.scxml +11 -0
  186. data/spec/support/connection_helper.rb +19 -0
  187. data/spec/support/redis_connector_monkey_patch.rb +1 -0
  188. data/spec/support/statemachine_helper.rb +84 -0
  189. data/spec/sync_mappings_spec.rb +96 -0
  190. metadata +219 -354
  191. data/lib/MINT-core/mapping/complementary.rb +0 -100
  192. data/lib/MINT-core/mapping/on_state_change.rb +0 -65
  193. data/lib/MINT-core/model/aui/AIC.rb +0 -86
  194. data/lib/MINT-core/model/aui/AIChoice.rb +0 -65
  195. data/lib/MINT-core/model/aui/AIINChoose.rb +0 -54
  196. data/lib/MINT-core/model/aui/AIOUTDiscrete.rb +0 -43
  197. data/lib/MINT-core/model/aui/aic.png +0 -0
  198. data/lib/MINT-core/model/aui/aic.scxml +0 -50
  199. data/lib/MINT-core/model/aui/aichoice.png +0 -0
  200. data/lib/MINT-core/model/aui/aichoice.scxml +0 -60
  201. data/lib/MINT-core/model/aui/aio.png +0 -0
  202. data/lib/MINT-core/model/aui/aisinglechoiceelement.png +0 -0
  203. data/lib/MINT-core/model/aui/aisinglepresence.png +0 -0
  204. data/lib/MINT-core/model/body/handgesture.rb +0 -279
  205. data/lib/MINT-core/model/body/head.png +0 -0
  206. data/lib/MINT-core/model/body/head.rb +0 -51
  207. data/lib/MINT-core/model/body/head.scxml +0 -28
  208. data/lib/MINT-core/model/cui/gfx/screen.rb +0 -18
  209. data/lib/MINT-core/overrides/rinda.rb +0 -34
  210. data/spec/AIC_spec.rb +0 -69
  211. data/spec/MINT-core_spec.rb +0 -11
  212. data/spec/aio_spec.rb +0 -144
  213. data/spec/cio_spec.rb +0 -369
  214. data/tasks/rspec.rake +0 -21
metadata CHANGED
@@ -1,338 +1,91 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: MINT-core
3
- version: !ruby/object:Gem::Version
4
- hash: 21
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.0.0
5
5
  prerelease:
6
- segments:
7
- - 1
8
- - 0
9
- - 1
10
- version: 1.0.1
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Sebastian Feuerstack
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2011-11-09 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
21
- name: dm-rinda-adapter
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
24
- none: false
25
- requirements:
26
- - - ~>
27
- - !ruby/object:Gem::Version
28
- hash: 27
29
- segments:
30
- - 0
31
- - 1
32
- - 0
33
- version: 0.1.0
34
- type: :runtime
35
- version_requirements: *id001
36
- - !ruby/object:Gem::Dependency
37
- name: MINT-statemachine
38
- prerelease: false
39
- requirement: &id002 !ruby/object:Gem::Requirement
40
- none: false
41
- requirements:
42
- - - ~>
43
- - !ruby/object:Gem::Version
44
- hash: 25
45
- segments:
46
- - 1
47
- - 2
48
- - 3
49
- version: 1.2.3
50
- type: :runtime
51
- version_requirements: *id002
52
- - !ruby/object:Gem::Dependency
53
- name: MINT-scxml
54
- prerelease: false
55
- requirement: &id003 !ruby/object:Gem::Requirement
56
- none: false
57
- requirements:
58
- - - ~>
59
- - !ruby/object:Gem::Version
60
- hash: 23
61
- segments:
62
- - 1
63
- - 0
64
- - 0
65
- version: 1.0.0
66
- type: :runtime
67
- version_requirements: *id003
68
- - !ruby/object:Gem::Dependency
69
- name: cassowary
70
- prerelease: false
71
- requirement: &id004 !ruby/object:Gem::Requirement
72
- none: false
73
- requirements:
74
- - - ~>
75
- - !ruby/object:Gem::Version
76
- hash: 23
77
- segments:
78
- - 1
79
- - 0
80
- - 0
81
- version: 1.0.0
82
- type: :runtime
83
- version_requirements: *id004
84
- - !ruby/object:Gem::Dependency
85
- name: dm-core
86
- prerelease: false
87
- requirement: &id005 !ruby/object:Gem::Requirement
88
- none: false
89
- requirements:
90
- - - ~>
91
- - !ruby/object:Gem::Version
92
- hash: 51
93
- segments:
94
- - 0
95
- - 10
96
- - 2
97
- version: 0.10.2
98
- type: :runtime
99
- version_requirements: *id005
100
- - !ruby/object:Gem::Dependency
101
- name: dm-rinda-adapter
102
- prerelease: false
103
- requirement: &id006 !ruby/object:Gem::Requirement
104
- none: false
105
- requirements:
106
- - - ~>
107
- - !ruby/object:Gem::Version
108
- hash: 31
109
- segments:
110
- - 0
111
- - 1
112
- - 2
113
- version: 0.1.2
114
- type: :runtime
115
- version_requirements: *id006
116
- - !ruby/object:Gem::Dependency
117
- name: cassowary
118
- prerelease: false
119
- requirement: &id007 !ruby/object:Gem::Requirement
120
- none: false
121
- requirements:
122
- - - ~>
123
- - !ruby/object:Gem::Version
124
- hash: 23
125
- segments:
126
- - 1
127
- - 0
128
- - 0
129
- version: 1.0.0
130
- type: :runtime
131
- version_requirements: *id007
132
- - !ruby/object:Gem::Dependency
133
- name: eventmachine
134
- prerelease: false
135
- requirement: &id008 !ruby/object:Gem::Requirement
136
- none: false
137
- requirements:
138
- - - ~>
139
- - !ruby/object:Gem::Version
140
- hash: 59
141
- segments:
142
- - 0
143
- - 12
144
- - 10
145
- version: 0.12.10
146
- type: :runtime
147
- version_requirements: *id008
148
- - !ruby/object:Gem::Dependency
149
- name: rake
150
- prerelease: false
151
- requirement: &id009 !ruby/object:Gem::Requirement
152
- none: false
153
- requirements:
154
- - - "="
155
- - !ruby/object:Gem::Version
156
- hash: 11
157
- segments:
158
- - 0
159
- - 9
160
- - 2
161
- - 2
162
- version: 0.9.2.2
163
- type: :runtime
164
- version_requirements: *id009
165
- - !ruby/object:Gem::Dependency
166
- name: rmagick
167
- prerelease: false
168
- requirement: &id010 !ruby/object:Gem::Requirement
169
- none: false
170
- requirements:
171
- - - ~>
172
- - !ruby/object:Gem::Version
173
- hash: 59
174
- segments:
175
- - 2
176
- - 12
177
- - 2
178
- version: 2.12.2
179
- type: :runtime
180
- version_requirements: *id010
181
- - !ruby/object:Gem::Dependency
182
- name: json
183
- prerelease: false
184
- requirement: &id011 !ruby/object:Gem::Requirement
185
- none: false
186
- requirements:
187
- - - ~>
188
- - !ruby/object:Gem::Version
189
- hash: 1
190
- segments:
191
- - 1
192
- - 5
193
- - 1
194
- version: 1.5.1
195
- type: :runtime
196
- version_requirements: *id011
197
- - !ruby/object:Gem::Dependency
198
- name: redis
199
- prerelease: false
200
- requirement: &id012 !ruby/object:Gem::Requirement
201
- none: false
202
- requirements:
203
- - - ~>
204
- - !ruby/object:Gem::Version
205
- hash: 5
206
- segments:
207
- - 2
208
- - 2
209
- - 1
210
- version: 2.2.1
211
- type: :runtime
212
- version_requirements: *id012
213
- - !ruby/object:Gem::Dependency
214
- name: dm-types
215
- prerelease: false
216
- requirement: &id013 !ruby/object:Gem::Requirement
12
+ date: 2012-11-21 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rdoc
16
+ requirement: &73088150 !ruby/object:Gem::Requirement
217
17
  none: false
218
- requirements:
18
+ requirements:
219
19
  - - ~>
220
- - !ruby/object:Gem::Version
221
- hash: 51
222
- segments:
223
- - 0
224
- - 10
225
- - 2
226
- version: 0.10.2
227
- type: :runtime
228
- version_requirements: *id013
229
- - !ruby/object:Gem::Dependency
230
- name: rspec
231
- prerelease: false
232
- requirement: &id014 !ruby/object:Gem::Requirement
233
- none: false
234
- requirements:
235
- - - "="
236
- - !ruby/object:Gem::Version
237
- hash: 25
238
- segments:
239
- - 1
240
- - 3
241
- - 1
242
- version: 1.3.1
20
+ - !ruby/object:Gem::Version
21
+ version: '3.10'
243
22
  type: :development
244
- version_requirements: *id014
245
- - !ruby/object:Gem::Dependency
246
- name: hoe
247
23
  prerelease: false
248
- requirement: &id015 !ruby/object:Gem::Requirement
249
- none: false
250
- requirements:
251
- - - ~>
252
- - !ruby/object:Gem::Version
253
- hash: 39
254
- segments:
255
- - 2
256
- - 9
257
- - 6
258
- version: 2.9.6
259
- type: :development
260
- version_requirements: *id015
261
- - !ruby/object:Gem::Dependency
24
+ version_requirements: *73088150
25
+ - !ruby/object:Gem::Dependency
262
26
  name: newgem
263
- prerelease: false
264
- requirement: &id016 !ruby/object:Gem::Requirement
27
+ requirement: &73079380 !ruby/object:Gem::Requirement
265
28
  none: false
266
- requirements:
267
- - - ~>
268
- - !ruby/object:Gem::Version
269
- hash: 5
270
- segments:
271
- - 1
272
- - 5
273
- - 3
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
274
32
  version: 1.5.3
275
33
  type: :development
276
- version_requirements: *id016
277
- - !ruby/object:Gem::Dependency
278
- name: rdoc
279
34
  prerelease: false
280
- requirement: &id017 !ruby/object:Gem::Requirement
281
- none: false
282
- requirements:
283
- - - ~>
284
- - !ruby/object:Gem::Version
285
- hash: 17
286
- segments:
287
- - 3
288
- - 11
289
- version: "3.11"
290
- type: :development
291
- version_requirements: *id017
292
- - !ruby/object:Gem::Dependency
35
+ version_requirements: *73079380
36
+ - !ruby/object:Gem::Dependency
293
37
  name: hoe
294
- prerelease: false
295
- requirement: &id018 !ruby/object:Gem::Requirement
38
+ requirement: &73078320 !ruby/object:Gem::Requirement
296
39
  none: false
297
- requirements:
40
+ requirements:
298
41
  - - ~>
299
- - !ruby/object:Gem::Version
300
- hash: 17
301
- segments:
302
- - 2
303
- - 9
304
- version: "2.9"
42
+ - !ruby/object:Gem::Version
43
+ version: '3.3'
305
44
  type: :development
306
- version_requirements: *id018
307
- description: |-
308
- Multimodal systems realizing a combination of speech, gesture and graphical-driven interaction are getting part of our everyday life.
309
-
310
- Examples are in-car assistance systems or recent game consoles. Future interaction will be embedded into smart environments offering the user to choose and to combine a heterogeneous set of interaction devices and modalities based on his preferences realizing an ubiquitous and multimodal access.
311
-
312
- This framework enables the modeling and execution of multimodal interaction interfaces for the web based on ruby and implements a server-sided synchronisation of all connected modes and media. Currenlty the framework considers gestures, head movements, multi touch and the mouse as principle input modes. The priciple output media is a web application based on a rails frontend as well as sound support based on the SDL libraries.
313
-
314
- Building this framework is an ongoing effort and it has to be pointed out that it serves to demonstrate scientific research results and is not targeted to we applied to serve productive systems as they are several limitations that need to be solved (maybe with your help?) like for instance multi-user support and authentification.
315
-
316
- The MINT core gem contains all basic AUI and CUI models as well as the basic infrastructure to create interactors and mappings. Please note that you need at least a CUI adapter gem to be able to actually run a system, e.g. the MINT-rails gem. But for initial experiements ist enough to follow the installation instructions of this document.
317
-
318
- There is still no documentation for the framework, but a lot of articles about the concepts and theories of our approach have already been published and can be accessed from our project site http://www.multi-access.de .
319
- email:
45
+ prerelease: false
46
+ version_requirements: *73078320
47
+ description: ! "Multimodal systems realizing a combination of speech, gesture and
48
+ graphical-driven interaction are getting part of our everyday life.\n\nExamples
49
+ are in-car assistance systems or recent game consoles. Future interaction will be
50
+ embedded into smart environments offering the user to choose and to combine a heterogeneous
51
+ set of interaction devices and modalities based on his preferences realizing an
52
+ ubiquitous and multimodal access.\n\nThis framework enables the modeling and execution
53
+ of multimodal interaction interfaces for the web based on ruby and implements a
54
+ server-sided synchronisation of all connected modes and media. Currenlty the framework
55
+ considers gestures, head movements, multi touch and the mouse as principle input
56
+ modes. The priciple output media is a web application based on a rails frontend
57
+ as well as sound support based on the SDL libraries.\n\nBuilding this framework
58
+ is an ongoing effort and it has to be pointed out that it serves to demonstrate
59
+ scientific research results and is not targeted to we applied to serve productive
60
+ systems as they are several limitations that need to be solved (maybe with your
61
+ help?) like for instance multi-user support and authentification. \n\nThe MINT
62
+ core gem contains all basic AUI and CUI models as well as the basic infrastructure
63
+ to create interactors and mappings. For presenting the user interface on a specific
64
+ platform a \"frontend framework\" is required. For the first MINT version (2010)
65
+ we used Rails 2.3 (See http://github.com/sfeu/MINT-rails). The current version uses
66
+ nodeJS and socketstream as the frontend framework (See http://github.com/sfeu/MINT-platform).
67
+ The MINT-platform project contains installation instructions.\n\nThere is still
68
+ no further documentation for the framework, but a lot of articles about the concepts
69
+ and theories of our approach have already been published and can be accessed from
70
+ our project site http://www.multi-access.de ."
71
+ email:
320
72
  - Sebastian@Feuerstack.org
321
- executables:
73
+ executables:
322
74
  - mint-aui
323
75
  - mint-cui-gfx
324
76
  - mint-juggernaut.sh
325
77
  - mint-tuplespace
326
78
  extensions: []
327
-
328
- extra_rdoc_files:
79
+ extra_rdoc_files:
329
80
  - History.txt
330
81
  - Manifest.txt
331
82
  - PostInstall.txt
332
- files:
83
+ - README.rdoc
84
+ files:
333
85
  - Gemfile
334
86
  - Gemfile.lock
335
87
  - History.txt
88
+ - LICENSE
336
89
  - MINT-core.gemspec
337
90
  - Manifest.txt
338
91
  - PostInstall.txt
@@ -348,99 +101,211 @@ files:
348
101
  - lib/MINT-core/agent/auicontrol.rb
349
102
  - lib/MINT-core/agent/cui-gfx.rb
350
103
  - lib/MINT-core/agent/cuicontrol.rb
351
- - lib/MINT-core/mapping/complementary.rb
104
+ - lib/MINT-core/connector/redis_connector.rb
105
+ - lib/MINT-core/manager/mapping_manager.rb
106
+ - lib/MINT-core/manager/mapping_parser.rb
107
+ - lib/MINT-core/manager/mapping_server.rb
108
+ - lib/MINT-core/manager/position_updater.rb
109
+ - lib/MINT-core/manager/scxml_client.rb
110
+ - lib/MINT-core/manager/scxml_server.rb
111
+ - lib/MINT-core/mapping/action/action.rb
112
+ - lib/MINT-core/mapping/action/backend_action.rb
113
+ - lib/MINT-core/mapping/action/bind_action.rb
114
+ - lib/MINT-core/mapping/action/event_action.rb
115
+ - lib/MINT-core/mapping/complementary_mapping.rb
352
116
  - lib/MINT-core/mapping/mapping.rb
353
- - lib/MINT-core/mapping/on_state_change.rb
117
+ - lib/MINT-core/mapping/observation/negation_observation.rb
118
+ - lib/MINT-core/mapping/observation/observation.rb
354
119
  - lib/MINT-core/mapping/sequential.rb
355
- - lib/MINT-core/model/aui/AIC.rb
356
- - lib/MINT-core/model/aui/AIChoice.rb
357
- - lib/MINT-core/model/aui/AIINChoose.rb
120
+ - lib/MINT-core/mapping/sequential_mapping.rb
121
+ - lib/MINT-core/model/aui/AIChoiceElement.rb
122
+ - lib/MINT-core/model/aui/AICommand.rb
123
+ - lib/MINT-core/model/aui/AIContainer.rb
124
+ - lib/MINT-core/model/aui/AIContext.rb
125
+ - lib/MINT-core/model/aui/AIIN.rb
126
+ - lib/MINT-core/model/aui/AIINContinuous.rb
127
+ - lib/MINT-core/model/aui/AIINDiscrete.rb
358
128
  - lib/MINT-core/model/aui/AIMultiChoice.rb
359
129
  - lib/MINT-core/model/aui/AIMultiChoiceElement.rb
360
130
  - lib/MINT-core/model/aui/AIO.rb
361
- - lib/MINT-core/model/aui/AIOUTDiscrete.rb
131
+ - lib/MINT-core/model/aui/AIOUT.rb
132
+ - lib/MINT-core/model/aui/AIOUTContinuous.rb
133
+ - lib/MINT-core/model/aui/AIReference.rb
362
134
  - lib/MINT-core/model/aui/AISingleChoice.rb
363
135
  - lib/MINT-core/model/aui/AISingleChoiceElement.rb
364
136
  - lib/MINT-core/model/aui/AISinglePresence.rb
365
- - lib/MINT-core/model/aui/aic.png
366
- - lib/MINT-core/model/aui/aic.scxml
367
- - lib/MINT-core/model/aui/aichoice.png
368
- - lib/MINT-core/model/aui/aichoice.scxml
369
- - lib/MINT-core/model/aui/aio.png
137
+ - lib/MINT-core/model/aui/aicommand.scxml
138
+ - lib/MINT-core/model/aui/aicontainer.scxml
139
+ - lib/MINT-core/model/aui/aicontext.scxml
140
+ - lib/MINT-core/model/aui/aiincontinuous.scxml
141
+ - lib/MINT-core/model/aui/aiinrange.scxml
142
+ - lib/MINT-core/model/aui/aimultichoice.scxml
143
+ - lib/MINT-core/model/aui/aimultichoiceelement.scxml
370
144
  - lib/MINT-core/model/aui/aio.scxml
371
- - lib/MINT-core/model/aui/aisinglechoiceelement.png
145
+ - lib/MINT-core/model/aui/aioutcontinuous.scxml
146
+ - lib/MINT-core/model/aui/aireference.scxml
147
+ - lib/MINT-core/model/aui/aisinglechoice.scxml
372
148
  - lib/MINT-core/model/aui/aisinglechoiceelement.scxml
373
- - lib/MINT-core/model/aui/aisinglepresence.png
374
149
  - lib/MINT-core/model/aui/aisinglepresence.scxml
375
150
  - lib/MINT-core/model/aui/model.rb
376
- - lib/MINT-core/model/body/gesture_button.rb
377
- - lib/MINT-core/model/body/handgesture.rb
378
- - lib/MINT-core/model/body/head.png
379
- - lib/MINT-core/model/body/head.rb
380
- - lib/MINT-core/model/body/head.scxml
381
151
  - lib/MINT-core/model/cui/gfx/CIC.rb
382
152
  - lib/MINT-core/model/cui/gfx/CIO.rb
153
+ - lib/MINT-core/model/cui/gfx/CarouFredSel.scxml
154
+ - lib/MINT-core/model/cui/gfx/MarkableRadioButton.rb
155
+ - lib/MINT-core/model/cui/gfx/RadioButton.rb
156
+ - lib/MINT-core/model/cui/gfx/RadioButtonGroup.rb
157
+ - lib/MINT-core/model/cui/gfx/button.rb
158
+ - lib/MINT-core/model/cui/gfx/button.scxml
159
+ - lib/MINT-core/model/cui/gfx/caroufredsel.rb
160
+ - lib/MINT-core/model/cui/gfx/cic.scxml
161
+ - lib/MINT-core/model/cui/gfx/cio.scxml
162
+ - lib/MINT-core/model/cui/gfx/markableradiobutton.scxml
383
163
  - lib/MINT-core/model/cui/gfx/model.rb
384
- - lib/MINT-core/model/cui/gfx/screen.rb
385
- - lib/MINT-core/model/device/button.rb
386
- - lib/MINT-core/model/device/joypad.rb
387
- - lib/MINT-core/model/device/mouse.rb
388
- - lib/MINT-core/model/device/pointer.rb
389
- - lib/MINT-core/model/device/wheel.rb
164
+ - lib/MINT-core/model/cui/gfx/radiobutton.scxml
390
165
  - lib/MINT-core/model/interactor.rb
166
+ - lib/MINT-core/model/interactor.scxml
167
+ - lib/MINT-core/model/interactor_helpers.rb
168
+ - lib/MINT-core/model/ir/body/OneHandPoseNavigation.rb
169
+ - lib/MINT-core/model/ir/body/body.rb
170
+ - lib/MINT-core/model/ir/body/fingertip.rb
171
+ - lib/MINT-core/model/ir/body/fingertip.scxml
172
+ - lib/MINT-core/model/ir/body/gesture_button.rb
173
+ - lib/MINT-core/model/ir/body/hand.rb
174
+ - lib/MINT-core/model/ir/body/head.rb
175
+ - lib/MINT-core/model/ir/body/head.scxml
176
+ - lib/MINT-core/model/ir/body/onehandposenavigation.scxml
177
+ - lib/MINT-core/model/ir/body/pose.rb
178
+ - lib/MINT-core/model/ir/browserscreen.rb
179
+ - lib/MINT-core/model/ir/browserscreen.scxml
180
+ - lib/MINT-core/model/ir/button.rb
181
+ - lib/MINT-core/model/ir/ir.rb
182
+ - lib/MINT-core/model/ir/irmedia.rb
183
+ - lib/MINT-core/model/ir/irmode.rb
184
+ - lib/MINT-core/model/ir/joypad.rb
185
+ - lib/MINT-core/model/ir/mouse.rb
186
+ - lib/MINT-core/model/ir/mouse.scxml
187
+ - lib/MINT-core/model/ir/mouse_old.rb
188
+ - lib/MINT-core/model/ir/pointer.rb
189
+ - lib/MINT-core/model/ir/pointer.scxml
190
+ - lib/MINT-core/model/ir/screen.rb
191
+ - lib/MINT-core/model/ir/wheel.rb
192
+ - lib/MINT-core/model/mim/aicommand_activate_to_button_press.xml
193
+ - lib/MINT-core/model/mim/aicommand_deactivate_to_button_release.xml
194
+ - lib/MINT-core/model/mim/aio_defocus_to_cio_unhighlight.xml
195
+ - lib/MINT-core/model/mim/aio_focus_to_cio_highlight.xml
196
+ - lib/MINT-core/model/mim/aio_present_to_cio_display.xml
197
+ - lib/MINT-core/model/mim/aio_suspend_to_cio_hide.xml
198
+ - lib/MINT-core/model/mim/aisinglechoice_present_to_child_present.xml
199
+ - lib/MINT-core/model/mim/aisinglechoiceelement_chosen_to_radiobutton_select.xml
200
+ - lib/MINT-core/model/mim/aisinglechoiceelement_unchosen_to_radiobutton_unselect.xml
201
+ - lib/MINT-core/model/mim/aisinglepresence_children_finished_to_caroufredsel_init_js.xml
202
+ - lib/MINT-core/model/mim/aisinglepresence_present_to_child_present.xml
203
+ - lib/MINT-core/model/mim/browserscreen_reload_to_cuicontrol_refresh_all.xml
204
+ - lib/MINT-core/model/mim/button_press_to_aicommand_activate.xml
205
+ - lib/MINT-core/model/mim/button_release_to_aicommand_deactivate.xml
206
+ - lib/MINT-core/model/mim/caroufredsel_refreshing_to_caroufredsel_init_js.xml
207
+ - lib/MINT-core/model/mim/cio_display_to_aio_defocus.xml
208
+ - lib/MINT-core/model/mim/cio_display_to_aio_present.xml
209
+ - lib/MINT-core/model/mim/cio_display_to_cio_display_cache_add.xml
210
+ - lib/MINT-core/model/mim/cio_hide_to_aio_suspend.xml
211
+ - lib/MINT-core/model/mim/cio_hide_to_cio_display_cache_remove.xml
212
+ - lib/MINT-core/model/mim/cio_highlight_to_aio_focus.xml
213
+ - lib/MINT-core/model/mim/head_looking_left_to_aisinglepresence_prev.xml
214
+ - lib/MINT-core/model/mim/head_looking_right_to_aisinglepresence_next.xml
215
+ - lib/MINT-core/model/mim/head_nodding_to_aisinglepresence_next.xml
216
+ - lib/MINT-core/model/mim/head_tilting_left_to_aisinglepresence_prev.xml
217
+ - lib/MINT-core/model/mim/head_tilting_right_to_aisinglepresence_next.xml
218
+ - lib/MINT-core/model/mim/left_button_aisinglepresence_enter.xml
219
+ - lib/MINT-core/model/mim/left_button_aisinglepresence_next.xml
220
+ - lib/MINT-core/model/mim/mim_default.xml
221
+ - lib/MINT-core/model/mim/mint-mappings.xsd
222
+ - lib/MINT-core/model/mim/mouse_press_to_aicommand_activate.xml
223
+ - lib/MINT-core/model/mim/mouse_press_to_aisinglechoiceelement_choose.xml
224
+ - lib/MINT-core/model/mim/mouse_press_to_aisinglechoiceelement_unchoose.xml
225
+ - lib/MINT-core/model/mim/mouse_release_to_aicommand_deactivate.xml
226
+ - lib/MINT-core/model/mim/mouse_stop_to_cio_highlight.xml
227
+ - lib/MINT-core/model/mim/onehandposnav_confirm_to_aichoiceelement_choose.xml
228
+ - lib/MINT-core/model/mim/onehandposnav_next_to_aio_next.xml
229
+ - lib/MINT-core/model/mim/onehandposnav_previous_to_aio_prev.xml
230
+ - lib/MINT-core/model/mim/radiobutton_selected_to_aisinglechoiceelement_choose.xml
231
+ - lib/MINT-core/model/mim/radiobutton_unselected_to_aisinglechoiceelement_unchoose.xml
232
+ - lib/MINT-core/model/mim/right_button_aisinglepresence_prev.xml
391
233
  - lib/MINT-core/model/task.rb
392
- - lib/MINT-core/overrides/rinda.rb
393
234
  - script/console
394
235
  - script/destroy
395
236
  - script/generate
396
- - spec/AIC_spec.rb
237
+ - spec/AICommand_spec.rb
238
+ - spec/AIContainer_spec.rb
239
+ - spec/AIINContinuous_spec.rb
240
+ - spec/AIOUTContinuous_spec.rb
241
+ - spec/AIO_spec.rb
242
+ - spec/AIReference_spec.rb
397
243
  - spec/AISinglePresence_spec.rb
398
- - spec/MINT-core_spec.rb
244
+ - spec/Button_spec.rb
245
+ - spec/CIO_spec.rb
246
+ - spec/Interactor_spec.rb
247
+ - spec/MappingManager_spec.rb
248
+ - spec/Spontaneous_spec.rb
399
249
  - spec/aio_agent_spec.rb
400
- - spec/aio_spec.rb
401
250
  - spec/aisinglechoice_spec.rb
402
251
  - spec/aisinglechoiceelement_spec.rb
403
- - spec/cio_spec.rb
252
+ - spec/complementary_mapping_spec.rb
404
253
  - spec/core_spec.rb
254
+ - spec/cui_helper.rb
255
+ - spec/examples/browserscreen_reload_to_cuicontrol_refresh_all.xml
256
+ - spec/examples/mim_streaming_example.xml
257
+ - spec/examples/mouse_highlight.xml
258
+ - spec/examples/performance_mapping.xml
259
+ - spec/examples/reset_click.xml
260
+ - spec/interactor_test.scxml
261
+ - spec/interactor_test_2.scxml
262
+ - spec/mapping_performance_spec.rb
263
+ - spec/mapping_server_spec.rb
264
+ - spec/mapping_spec.rb
405
265
  - spec/music_spec.rb
266
+ - spec/performance_counter.scxml
406
267
  - spec/rcov.opts
268
+ - spec/sequential_mappings_spec.rb
269
+ - spec/shared/aio_shared.rb
407
270
  - spec/spec.opts
408
271
  - spec/spec_helper.rb
409
- - tasks/rspec.rake
272
+ - spec/spontaneous.scxml
273
+ - spec/support/connection_helper.rb
274
+ - spec/support/redis_connector_monkey_patch.rb
275
+ - spec/support/statemachine_helper.rb
276
+ - spec/sync_mappings_spec.rb
410
277
  - .gemtest
411
278
  homepage: http://www.multi-access.de
412
279
  licenses: []
413
-
414
280
  post_install_message: PostInstall.txt
415
- rdoc_options:
281
+ rdoc_options:
416
282
  - --main
417
283
  - README.rdoc
418
- require_paths:
284
+ require_paths:
419
285
  - lib
420
- required_ruby_version: !ruby/object:Gem::Requirement
286
+ required_ruby_version: !ruby/object:Gem::Requirement
421
287
  none: false
422
- requirements:
423
- - - ">="
424
- - !ruby/object:Gem::Version
425
- hash: 3
426
- segments:
288
+ requirements:
289
+ - - ! '>='
290
+ - !ruby/object:Gem::Version
291
+ version: '0'
292
+ segments:
427
293
  - 0
428
- version: "0"
429
- required_rubygems_version: !ruby/object:Gem::Requirement
294
+ hash: 925115183
295
+ required_rubygems_version: !ruby/object:Gem::Requirement
430
296
  none: false
431
- requirements:
432
- - - ">="
433
- - !ruby/object:Gem::Version
434
- hash: 3
435
- segments:
297
+ requirements:
298
+ - - ! '>='
299
+ - !ruby/object:Gem::Version
300
+ version: '0'
301
+ segments:
436
302
  - 0
437
- version: "0"
303
+ hash: 925115183
438
304
  requirements: []
439
-
440
305
  rubyforge_project: MINT-core
441
- rubygems_version: 1.8.5
306
+ rubygems_version: 1.8.15
442
307
  signing_key:
443
308
  specification_version: 3
444
- summary: Multimodal systems realizing a combination of speech, gesture and graphical-driven interaction are getting part of our everyday life
309
+ summary: Multimodal systems realizing a combination of speech, gesture and graphical-driven
310
+ interaction are getting part of our everyday life
445
311
  test_files: []
446
-