Project

General

Profile

Download (8.7 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / java / org / distorted / dialogs / RubikDialogScoresPagerAdapter.java @ 318c0a7d

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2020 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// Magic Cube is free software: you can redistribute it and/or modify                            //
7
// it under the terms of the GNU General Public License as published by                          //
8
// the Free Software Foundation, either version 2 of the License, or                             //
9
// (at your option) any later version.                                                           //
10
//                                                                                               //
11
// Magic Cube is distributed in the hope that it will be useful,                                 //
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14
// GNU General Public License for more details.                                                  //
15
//                                                                                               //
16
// You should have received a copy of the GNU General Public License                             //
17
// along with Magic Cube.  If not, see <http://www.gnu.org/licenses/>.                           //
18
///////////////////////////////////////////////////////////////////////////////////////////////////
19

    
20
package org.distorted.dialogs;
21

    
22
import android.os.Bundle;
23
import androidx.annotation.NonNull;
24
import androidx.fragment.app.FragmentActivity;
25
import androidx.viewpager.widget.PagerAdapter;
26
import androidx.viewpager.widget.ViewPager;
27

    
28
import android.util.DisplayMetrics;
29
import android.view.View;
30
import android.view.ViewGroup;
31
import android.widget.LinearLayout;
32

    
33
import org.distorted.objectlib.main.ObjectType;
34

    
35
import org.distorted.main.R;
36
import org.distorted.network.RubikScores;
37
import org.distorted.network.RubikNetwork;
38
import org.distorted.screens.RubikScreenPlay;
39

    
40
///////////////////////////////////////////////////////////////////////////////////////////////////
41

    
42
class RubikDialogScoresPagerAdapter extends PagerAdapter implements RubikNetwork.Receiver
43
  {
44
  private final FragmentActivity mAct;
45
  private final RubikDialogScores mDialog;
46
  private final RubikDialogScoresView[] mViews;
47
  private final ViewPager mViewPager;
48
  private final int mNumTabs;
49
  private final boolean mIsSubmitting;
50
  private int mToDoTab, mToDoLvl;
51

    
52
///////////////////////////////////////////////////////////////////////////////////////////////////
53

    
54
  private void addSection(int tab, int level, int lastLevel, final RubikDialogScoresView view, final String[] country, final String[] name, final float[] time)
55
    {
56
    String title = level==lastLevel-1 ?
57
                   mAct.getString(R.string.level_full) :
58
                   mAct.getString(R.string.lv_placeholder,level+1);
59

    
60
    final LinearLayout section = view.createSection(mAct, tab, title, level, country, name, time);
61

    
62
    mAct.runOnUiThread(new Runnable()
63
      {
64
      @Override
65
      public void run()
66
        {
67
        view.addSection(section);
68
        }
69
      });
70

    
71
    try
72
      {
73
      Thread.sleep(50);
74
      }
75
    catch( InterruptedException ignored)
76
      {
77

    
78
      }
79
    }
80

    
81
///////////////////////////////////////////////////////////////////////////////////////////////////
82

    
83
  private void getNext(int currentTab, int[] toDoTab, int[] maxTab, int[] lastTab)
84
    {
85
    if( toDoTab[currentTab]<maxTab[currentTab] )
86
      {
87
      mToDoTab = currentTab;
88
      mToDoLvl = toDoTab[currentTab]<maxTab[currentTab]-1 ? toDoTab[currentTab] : lastTab[currentTab]-1;
89
      toDoTab[currentTab]++;
90
      }
91
    else
92
      {
93
      for(int tab=0; tab<mNumTabs; tab++)
94
        {
95
        if( toDoTab[tab]<maxTab[tab] )
96
          {
97
          mToDoTab = tab;
98
          mToDoLvl = toDoTab[tab]<maxTab[tab]-1 ? toDoTab[tab] : lastTab[tab]-1;
99
          toDoTab[tab]++;
100
          break;
101
          }
102
        }
103
      }
104
    }
105

    
106
///////////////////////////////////////////////////////////////////////////////////////////////////
107

    
108
  public void receive(final String[][][] country, final String[][][] name, final float[][][] time)
109
    {
110
    prepareView();
111

    
112
    int MAX = RubikScreenPlay.LEVELS_SHOWN;
113
    int toDo=0;
114
    int[] toDoTab = new int[mNumTabs];
115
    int[] maxTab  = new int[mNumTabs];
116
    int[] lastTab = new int[mNumTabs];
117

    
118
    for(int i=0; i<mNumTabs; i++)
119
      {
120
      lastTab[i]= ObjectType.getDBLevel(i);
121
      maxTab[i] = Math.min(lastTab[i],MAX);
122
      toDoTab[i]= 0;
123

    
124
      toDo += maxTab[i];
125
      }
126

    
127
    while( toDo>0 )
128
      {
129
      toDo--;
130
      getNext(mViewPager.getCurrentItem(),toDoTab,maxTab,lastTab);
131
      addSection( mToDoTab,mToDoLvl, lastTab[mToDoTab], mViews[mToDoTab],
132
                  country[mToDoTab][mToDoLvl],name[mToDoTab][mToDoLvl],time[mToDoTab][mToDoLvl]);
133
      }
134
    }
135

    
136
///////////////////////////////////////////////////////////////////////////////////////////////////
137

    
138
  public void message(final String mess)
139
    {
140
    mAct.runOnUiThread(new Runnable()
141
      {
142
      @Override
143
      public void run()
144
        {
145
        for(int i=0; i<mNumTabs; i++)
146
          {
147
          mViews[i].message(mess);
148
          }
149
        }
150
      });
151
    }
152

    
153
///////////////////////////////////////////////////////////////////////////////////////////////////
154

    
155
  public void error(final String error)
156
    {
157
    char errorNumber = error.charAt(0);
158

    
159
    switch(errorNumber)
160
      {
161
      case '1': message("Network error");
162
                break;
163
      case '2': RubikScores scores = RubikScores.getInstance();
164
                Bundle bundle = new Bundle();
165
                bundle.putString("name", scores.getName() );
166

    
167
                RubikDialogSetName nameDiag = new RubikDialogSetName();
168
                nameDiag.setArguments(bundle);
169
                nameDiag.show(mAct.getSupportFragmentManager(), null);
170

    
171
                mDialog.dismiss();
172

    
173
                break;
174
      case '3': message("Server error");
175
                break;
176
      default : message("Unexpected error");
177
      }
178
    }
179

    
180
///////////////////////////////////////////////////////////////////////////////////////////////////
181

    
182
  private void prepareView()
183
    {
184
    mAct.runOnUiThread(new Runnable()
185
      {
186
      @Override
187
      public void run()
188
        {
189
        for(int i=0; i<mNumTabs; i++)
190
          {
191
          mViews[i].prepareView(mAct);
192
          }
193
        }
194
      });
195
    try
196
      {
197
      Thread.sleep(150);
198
      }
199
    catch( InterruptedException ignored)
200
      {
201

    
202
      }
203
    }
204

    
205
///////////////////////////////////////////////////////////////////////////////////////////////////
206

    
207
  RubikDialogScoresPagerAdapter(FragmentActivity act, ViewPager viewPager, boolean isSubmitting, RubikDialogScores diag)
208
    {
209
    mAct = act;
210
    mDialog = diag;
211
    mNumTabs = ObjectType.NUM_OBJECTS;
212
    mViews = new RubikDialogScoresView[mNumTabs];
213
    mViewPager = viewPager;
214
    mIsSubmitting = isSubmitting;
215

    
216
    viewPager.setAdapter(this);
217
    viewPager.setOffscreenPageLimit(mNumTabs-1);
218
    }
219

    
220
///////////////////////////////////////////////////////////////////////////////////////////////////
221

    
222
  @Override
223
  @NonNull
224
  public Object instantiateItem(@NonNull ViewGroup collection, int position)
225
    {
226
    DisplayMetrics metrics = mAct.getResources().getDisplayMetrics();
227

    
228
    mViews[position] = new RubikDialogScoresView(mAct, metrics.heightPixels, mIsSubmitting);
229
    collection.addView(mViews[position]);
230

    
231
    boolean allCreated = true;
232

    
233
    for(int i=0; i<mNumTabs; i++)
234
      {
235
      if( mViews[i]==null )
236
        {
237
        allCreated = false;
238
        break;
239
        }
240
      }
241

    
242
    if( allCreated )
243
      {
244
      RubikNetwork network = RubikNetwork.getInstance();
245

    
246
      if( mIsSubmitting )  network.submit  ( this, mAct );
247
      else                 network.download( this, mAct );
248
      }
249

    
250
    return mViews[position];
251
    }
252

    
253
///////////////////////////////////////////////////////////////////////////////////////////////////
254

    
255
  @Override
256
  public void destroyItem(ViewGroup collection, int position, @NonNull Object view)
257
    {
258
    collection.removeView((View) view);
259
    }
260

    
261
///////////////////////////////////////////////////////////////////////////////////////////////////
262

    
263
  @Override
264
  public int getCount()
265
    {
266
    return mNumTabs;
267
    }
268

    
269
///////////////////////////////////////////////////////////////////////////////////////////////////
270

    
271
  @Override
272
  public boolean isViewFromObject(@NonNull View view, @NonNull Object object)
273
    {
274
    return view == object;
275
    }
276
  }
(12-12/19)