Class: StageS

Inherits:
BaseStage show all
Defined in:
lib/asker/ai/stages/stage_s.rb

Instance Method Summary collapse

Methods inherited from BaseStage

#initialize, #method_missing

Constructor Details

This class inherits a constructor from BaseStage

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class BaseStage

Instance Method Details

#run(pTable, pList1, pList2) ⇒ Object



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
# File 'lib/asker/ai/stages/stage_s.rb', line 8

def run(pTable, pList1, pList2)
  #process_sequence
  questions = []
  return questions unless ( pTable.fields.count==1 and pTable.sequence? and pTable.sequence[0]!="")

  #TODO
  #items=[]
  #pList1.each_with_index { |i,j| items<<[ i[:data][0], j] }
  #puts Rainbow(items).blue.bright

  #Question type <d3sequence>: items are part of a sequence
  if pList1.count>3
   a=0..(pList1.count-4)
   a.each_entry do |i|
      q=Question.new(:match)
      q.name="#{name}-#{num.to_s}-s1sequence-#{pTable.name}"
      q.text= random_image_for(name) + lang.text_for(:s1, name, pTable.fields[0].capitalize, pTable.sequence[0] )
      q.matching << [ pList1[i+0][:data][0], '' ]
      q.matching << [ pList1[i+1][:data][0], '' ]
      q.matching << [ pList1[i+2][:data][0], '' ]
      q.matching << [ pList1[i+3][:data][0], '' ]
      questions << q
    end
  end

  #Question type <d4sequence>: items are part of a reverse sequence
  if pList1.count>3 and pTable.sequence.size>1
   a=0..(pList1.count-4)
   a.each_entry do |i|
      q=Question.new
      q.set_match
      q.name="#{name}-#{num.to_s}-s2sequence-#{pTable.name}"
      q.text= random_image_for(name) + lang.text_for(:s1, name, pTable.fields[0].capitalize, pTable.sequence[1] )
      q.matching << [ pList1[i+3][:data][0], '' ]
      q.matching << [ pList1[i+2][:data][0], '' ]
      q.matching << [ pList1[i+1][:data][0], '' ]
      q.matching << [ pList1[i+0][:data][0], '' ]
      questions << q
    end
 end

  return questions
end