Blame view

app/src/main/java/tonio/noa/TutorialScene4Activity.java 6.61 KB
48365340   aarnaude   ajout scène 4 tri...
1
2
3
4
5
6
  package tonio.noa;
  
  import android.content.ClipData;
  import android.content.Intent;
  import android.os.Build;
  import android.os.Bundle;
4fbbe27a   aarnaude   ajout de la fonct...
7
  import android.speech.tts.TextToSpeech;
48365340   aarnaude   ajout scène 4 tri...
8
9
10
  import android.view.DragEvent;
  import android.view.MotionEvent;
  import android.view.View;
4fbbe27a   aarnaude   ajout de la fonct...
11
  import android.widget.TextView;
48365340   aarnaude   ajout scène 4 tri...
12
13
14
15
16
17
18
19
  
  /**
   * Created by psyk on 24/01/18.
   */
  
  public class TutorialScene4Activity extends MyPlayActivity implements View.OnTouchListener, View.OnDragListener {
  
      private int win_counter = 0;
95306d09   aarnaude   résolution bug su...
20
      private boolean done = false;
48365340   aarnaude   ajout scène 4 tri...
21
22
23
  
      @Override
      protected void onCreate(Bundle savedInstanceState) {
48365340   aarnaude   ajout scène 4 tri...
24
          super.onCreate(savedInstanceState);
2db7566f   aarnaude   modification de M...
25
          lanceConsigne("Tu peux mettre les petits carrés de couleurs sur les gros de la même couleur ?\nMerci !");
48365340   aarnaude   ajout scène 4 tri...
26
27
28
29
30
      }
  
      protected void onActivityResult(int requestCode, int resultCode, Intent data) {
          super.onActivityResult(requestCode, resultCode, data);
  
aaefb55f   aarnaude   scène 4 : débogguée
31
          setContentView(R.layout.tutorial4_display);
48365340   aarnaude   ajout scène 4 tri...
32
  
4fbbe27a   aarnaude   ajout de la fonct...
33
34
35
36
37
38
          TextView txtV = findViewById(R.id.cons_tut4);
          smallCons = "Met les carrés dans les cases correspondantes.";
          txtV.setText(smallCons);
          setTts();
  
  
48365340   aarnaude   ajout scène 4 tri...
39
40
41
          findViewById(R.id.blue_rectangle41).setOnTouchListener(this);
          findViewById(R.id.blue_rectangle42).setOnTouchListener(this);
          findViewById(R.id.blue_rectangle43).setOnTouchListener(this);
aaefb55f   aarnaude   scène 4 : débogguée
42
          findViewById(R.id.blue_rectangle44).setOnTouchListener(this);
48365340   aarnaude   ajout scène 4 tri...
43
44
45
          findViewById(R.id.red_rectangle41).setOnTouchListener(this);
          findViewById(R.id.red_rectangle42).setOnTouchListener(this);
          findViewById(R.id.red_rectangle43).setOnTouchListener(this);
aaefb55f   aarnaude   scène 4 : débogguée
46
          findViewById(R.id.red_rectangle44).setOnTouchListener(this);
48365340   aarnaude   ajout scène 4 tri...
47
48
49
          findViewById(R.id.green_rectangle41).setOnTouchListener(this);
          findViewById(R.id.green_rectangle42).setOnTouchListener(this);
          findViewById(R.id.green_rectangle43).setOnTouchListener(this);
aaefb55f   aarnaude   scène 4 : débogguée
50
          findViewById(R.id.green_rectangle44).setOnTouchListener(this);
48365340   aarnaude   ajout scène 4 tri...
51
52
53
54
55
56
57
  
          findViewById(R.id.anchor_blue_rectangle).setOnDragListener(this);
          findViewById(R.id.anchor_red_rectangle).setOnDragListener(this);
          findViewById(R.id.anchor_green_rectangle).setOnDragListener(this);
          findViewById(R.id.blue_rectangle41).setOnDragListener(this);
          findViewById(R.id.blue_rectangle42).setOnDragListener(this);
          findViewById(R.id.blue_rectangle43).setOnDragListener(this);
aaefb55f   aarnaude   scène 4 : débogguée
58
          findViewById(R.id.blue_rectangle44).setOnDragListener(this);
48365340   aarnaude   ajout scène 4 tri...
59
60
61
          findViewById(R.id.red_rectangle41).setOnDragListener(this);
          findViewById(R.id.red_rectangle42).setOnDragListener(this);
          findViewById(R.id.red_rectangle43).setOnDragListener(this);
aaefb55f   aarnaude   scène 4 : débogguée
62
          findViewById(R.id.red_rectangle44).setOnDragListener(this);
48365340   aarnaude   ajout scène 4 tri...
63
64
65
          findViewById(R.id.green_rectangle41).setOnDragListener(this);
          findViewById(R.id.green_rectangle42).setOnDragListener(this);
          findViewById(R.id.green_rectangle43).setOnDragListener(this);
aaefb55f   aarnaude   scène 4 : débogguée
66
          findViewById(R.id.green_rectangle44).setOnDragListener(this);
48365340   aarnaude   ajout scène 4 tri...
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
  
      }
  
      @Override
      public boolean onTouch(View view, MotionEvent event) {
          if (event.getAction() == MotionEvent.ACTION_DOWN) {
  
              View.DragShadowBuilder shadowBuilder = new View.DragShadowBuilder(view);
              ClipData data = ClipData.newPlainText("id", view.getResources().getResourceEntryName(view.getId()));
  
              if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
                  view.startDragAndDrop(data, shadowBuilder, view, 0);
              } else {
                  view.startDrag(data, shadowBuilder, view, 0);
              }
              return true;
          } else
              return false;
      }
  
      @Override
      public boolean onDrag(View v, DragEvent event) {
          switch (event.getAction()) {
              // signal for the start of a drag and drop operation
              case DragEvent.ACTION_DRAG_STARTED:
                  // do nothing
                  break;
  
              // the drag point has entered the bounding box of the View
              case DragEvent.ACTION_DRAG_ENTERED:
                  // do nothing
                  break;
  
              // the user has moved the drag shadow outside the bounding box of the View
              case DragEvent.ACTION_DRAG_EXITED:
                  // do nothing
                  break;
  
              // the drag and drop operation has concluded
              case DragEvent.ACTION_DRAG_ENDED:
95306d09   aarnaude   résolution bug su...
107
108
109
110
                  if (win_counter == 12 && !done) {
                      done = true;
                      bravoPage(v);
                  }
48365340   aarnaude   ajout scène 4 tri...
111
112
113
114
115
116
117
118
119
                  break;
  
              //drag shadow has been released,the drag point is within the bounding box of the View
              case DragEvent.ACTION_DROP:
                  //handle the dragged view being dropped over a target view
                  View view = (View) event.getLocalState();
                  if (v == findViewById(R.id.anchor_red_rectangle)) {
                      if (view == findViewById(R.id.red_rectangle41)
                              || view == findViewById(R.id.red_rectangle42)
aaefb55f   aarnaude   scène 4 : débogguée
120
121
                              || view == findViewById(R.id.red_rectangle43)
                              || view == findViewById(R.id.red_rectangle44)) {
48365340   aarnaude   ajout scène 4 tri...
122
123
124
125
126
127
128
                          //stop displaying the view where it was before it was dragged
                          view.setVisibility(View.INVISIBLE);
                          win_counter++;
                      }
                  } else if (v == findViewById(R.id.anchor_blue_rectangle)) {
                      if (view == findViewById(R.id.blue_rectangle41)
                              || view == findViewById(R.id.blue_rectangle42)
aaefb55f   aarnaude   scène 4 : débogguée
129
130
                              || view == findViewById(R.id.blue_rectangle43)
                              || view == findViewById(R.id.blue_rectangle44)) {
48365340   aarnaude   ajout scène 4 tri...
131
132
133
134
135
136
137
                          //stop displaying the view where it was before it was dragged
                          view.setVisibility(View.INVISIBLE);
                          win_counter++;
                      }
                  } else if (v == findViewById(R.id.anchor_green_rectangle)) {
                      if (view == findViewById(R.id.green_rectangle41)
                              || view == findViewById(R.id.green_rectangle42)
aaefb55f   aarnaude   scène 4 : débogguée
138
139
                              || view == findViewById(R.id.green_rectangle43)
                              || view == findViewById(R.id.green_rectangle44)) {
48365340   aarnaude   ajout scène 4 tri...
140
141
142
143
144
145
146
147
148
149
150
151
                          //stop displaying the view where it was before it was dragged
                          view.setVisibility(View.INVISIBLE);
                          win_counter++;
                      }
                  }
                  break;
          }
          return true;
      }
  
      @Override
      protected void next() {
aaefb55f   aarnaude   scène 4 : débogguée
152
          startActivity(new Intent(this, TutorialScene5Activity.class));
48365340   aarnaude   ajout scène 4 tri...
153
154
      }
  }