Project

General

Profile

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

magiccube / src / main / java / org / distorted / dialogs / RubikDialogScoresPagerAdapter.java @ 3f7a4363

1 cc5ec229 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
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 1f9772f3 Leszek Koltunski
package org.distorted.dialogs;
21 cc5ec229 Leszek Koltunski
22 f895e77a Leszek Koltunski
import android.os.Bundle;
23 66e777b0 Leszek Koltunski
import androidx.annotation.NonNull;
24
import androidx.fragment.app.FragmentActivity;
25
import androidx.viewpager.widget.PagerAdapter;
26
import androidx.viewpager.widget.ViewPager;
27 362807f0 Leszek Koltunski
28
import android.util.DisplayMetrics;
29 cc5ec229 Leszek Koltunski
import android.view.View;
30
import android.view.ViewGroup;
31 d5fb0e7e Leszek Koltunski
import android.widget.LinearLayout;
32 cc5ec229 Leszek Koltunski
33 3f7a4363 Leszek Koltunski
import org.distorted.objectlib.main.ObjectList;
34
35 00af5060 Leszek Koltunski
import org.distorted.main.R;
36 6a083c6a Leszek Koltunski
import org.distorted.network.RubikScores;
37
import org.distorted.network.RubikNetwork;
38 fcd5b990 Leszek Koltunski
import org.distorted.screens.RubikScreenPlay;
39 4888e97c Leszek Koltunski
40 cc5ec229 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
41
42 6a083c6a Leszek Koltunski
class RubikDialogScoresPagerAdapter extends PagerAdapter implements RubikNetwork.Receiver
43 cc5ec229 Leszek Koltunski
  {
44 00af5060 Leszek Koltunski
  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 3e5ad461 Leszek Koltunski
  private int mToDoTab, mToDoLvl;
51 cc5ec229 Leszek Koltunski
52
///////////////////////////////////////////////////////////////////////////////////////////////////
53
54 00af5060 Leszek Koltunski
  private void addSection(int tab, int level, int lastLevel, final RubikDialogScoresView view, final String[] country, final String[] name, final float[] time)
55 028f3e0d Leszek Koltunski
    {
56 00af5060 Leszek Koltunski
    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 028f3e0d Leszek Koltunski
62 3e5ad461 Leszek Koltunski
    mAct.runOnUiThread(new Runnable()
63
      {
64
      @Override
65
      public void run()
66
        {
67
        view.addSection(section);
68
        }
69
      });
70 028f3e0d Leszek Koltunski
71 3e5ad461 Leszek Koltunski
    try
72 028f3e0d Leszek Koltunski
      {
73 3e5ad461 Leszek Koltunski
      Thread.sleep(50);
74
      }
75
    catch( InterruptedException ignored)
76
      {
77
78
      }
79
    }
80
81
///////////////////////////////////////////////////////////////////////////////////////////////////
82 13ed61b5 Leszek Koltunski
83 00af5060 Leszek Koltunski
  private void getNext(int currentTab, int[] toDoTab, int[] maxTab, int[] lastTab)
84 3e5ad461 Leszek Koltunski
    {
85
    if( toDoTab[currentTab]<maxTab[currentTab] )
86
      {
87
      mToDoTab = currentTab;
88 00af5060 Leszek Koltunski
      mToDoLvl = toDoTab[currentTab]<maxTab[currentTab]-1 ? toDoTab[currentTab] : lastTab[currentTab]-1;
89 3e5ad461 Leszek Koltunski
      toDoTab[currentTab]++;
90
      }
91
    else
92
      {
93
      for(int tab=0; tab<mNumTabs; tab++)
94 13ed61b5 Leszek Koltunski
        {
95 3e5ad461 Leszek Koltunski
        if( toDoTab[tab]<maxTab[tab] )
96 13ed61b5 Leszek Koltunski
          {
97 3e5ad461 Leszek Koltunski
          mToDoTab = tab;
98 00af5060 Leszek Koltunski
          mToDoLvl = toDoTab[tab]<maxTab[tab]-1 ? toDoTab[tab] : lastTab[tab]-1;
99 3e5ad461 Leszek Koltunski
          toDoTab[tab]++;
100
          break;
101 13ed61b5 Leszek Koltunski
          }
102
        }
103 3e5ad461 Leszek Koltunski
      }
104
    }
105 13ed61b5 Leszek Koltunski
106 3e5ad461 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
107 028f3e0d Leszek Koltunski
108 3e5ad461 Leszek Koltunski
  public void receive(final String[][][] country, final String[][][] name, final float[][][] time)
109
    {
110
    prepareView();
111
112 fcd5b990 Leszek Koltunski
    int MAX = RubikScreenPlay.LEVELS_SHOWN;
113 3e5ad461 Leszek Koltunski
    int toDo=0;
114
    int[] toDoTab = new int[mNumTabs];
115
    int[] maxTab  = new int[mNumTabs];
116 00af5060 Leszek Koltunski
    int[] lastTab = new int[mNumTabs];
117 3e5ad461 Leszek Koltunski
118
    for(int i=0; i<mNumTabs; i++)
119
      {
120 9c2f0c91 Leszek Koltunski
      int object   = ObjectList.unpackObject(i);
121
      int sizeIndex= ObjectList.unpackSizeIndex(i);
122 0a7aa15b Leszek Koltunski
      lastTab[i]   = ObjectList.getDBLevel(object, sizeIndex);
123 00af5060 Leszek Koltunski
      maxTab[i]    = Math.min(lastTab[i],MAX);
124 3e5ad461 Leszek Koltunski
      toDoTab[i]   = 0;
125
126
      toDo += maxTab[i];
127
      }
128
129
    while( toDo>0 )
130
      {
131
      toDo--;
132 00af5060 Leszek Koltunski
      getNext(mViewPager.getCurrentItem(),toDoTab,maxTab,lastTab);
133
      addSection( mToDoTab,mToDoLvl, lastTab[mToDoTab], mViews[mToDoTab],
134 3e5ad461 Leszek Koltunski
                  country[mToDoTab][mToDoLvl],name[mToDoTab][mToDoLvl],time[mToDoTab][mToDoLvl]);
135 028f3e0d Leszek Koltunski
      }
136
    }
137
138 17f9a695 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
139
140
  public void message(final String mess)
141
    {
142
    mAct.runOnUiThread(new Runnable()
143
      {
144
      @Override
145
      public void run()
146
        {
147
        for(int i=0; i<mNumTabs; i++)
148
          {
149
          mViews[i].message(mess);
150
          }
151
        }
152
      });
153
    }
154
155
///////////////////////////////////////////////////////////////////////////////////////////////////
156
157 4c0cd600 Leszek Koltunski
  public void error(final String error)
158 17f9a695 Leszek Koltunski
    {
159
    char errorNumber = error.charAt(0);
160
161
    switch(errorNumber)
162
      {
163 90fd47b0 Leszek Koltunski
      case '1': message("Network error");
164 4c0cd600 Leszek Koltunski
                break;
165 f895e77a Leszek Koltunski
      case '2': RubikScores scores = RubikScores.getInstance();
166
                Bundle bundle = new Bundle();
167
                bundle.putString("name", scores.getName() );
168
169
                RubikDialogSetName nameDiag = new RubikDialogSetName();
170
                nameDiag.setArguments(bundle);
171
                nameDiag.show(mAct.getSupportFragmentManager(), null);
172
173
                mDialog.dismiss();
174
175 17f9a695 Leszek Koltunski
                break;
176
      case '3': message("Server error");
177
                break;
178 4c0cd600 Leszek Koltunski
      default : message("Unexpected error");
179 17f9a695 Leszek Koltunski
      }
180
    }
181
182 028f3e0d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
183
184
  private void prepareView()
185 946d9762 Leszek Koltunski
    {
186
    mAct.runOnUiThread(new Runnable()
187
      {
188
      @Override
189
      public void run()
190
        {
191 4888e97c Leszek Koltunski
        for(int i=0; i<mNumTabs; i++)
192 946d9762 Leszek Koltunski
          {
193
          mViews[i].prepareView(mAct);
194
          }
195
        }
196
      });
197
    try
198
      {
199 7aff6aa7 Leszek Koltunski
      Thread.sleep(150);
200 946d9762 Leszek Koltunski
      }
201 d5d503d0 Leszek Koltunski
    catch( InterruptedException ignored)
202 946d9762 Leszek Koltunski
      {
203
204
      }
205 028f3e0d Leszek Koltunski
    }
206 946d9762 Leszek Koltunski
207
///////////////////////////////////////////////////////////////////////////////////////////////////
208
209 f895e77a Leszek Koltunski
  RubikDialogScoresPagerAdapter(FragmentActivity act, ViewPager viewPager, boolean isSubmitting, RubikDialogScores diag)
210 cc5ec229 Leszek Koltunski
    {
211
    mAct = act;
212 f895e77a Leszek Koltunski
    mDialog = diag;
213 9c2f0c91 Leszek Koltunski
    mNumTabs = ObjectList.getTotal();
214 4888e97c Leszek Koltunski
    mViews = new RubikDialogScoresView[mNumTabs];
215 028f3e0d Leszek Koltunski
    mViewPager = viewPager;
216 4895fff6 Leszek Koltunski
    mIsSubmitting = isSubmitting;
217 cc5ec229 Leszek Koltunski
218
    viewPager.setAdapter(this);
219 4888e97c Leszek Koltunski
    viewPager.setOffscreenPageLimit(mNumTabs-1);
220 cc5ec229 Leszek Koltunski
    }
221
222
///////////////////////////////////////////////////////////////////////////////////////////////////
223
224
  @Override
225
  @NonNull
226
  public Object instantiateItem(@NonNull ViewGroup collection, int position)
227
    {
228 362807f0 Leszek Koltunski
    DisplayMetrics metrics = mAct.getResources().getDisplayMetrics();
229
230
    mViews[position] = new RubikDialogScoresView(mAct, metrics.heightPixels, mIsSubmitting);
231 946d9762 Leszek Koltunski
    collection.addView(mViews[position]);
232
233
    boolean allCreated = true;
234
235 4888e97c Leszek Koltunski
    for(int i=0; i<mNumTabs; i++)
236 946d9762 Leszek Koltunski
      {
237
      if( mViews[i]==null )
238
        {
239
        allCreated = false;
240
        break;
241
        }
242
      }
243
244
    if( allCreated )
245
      {
246 6a083c6a Leszek Koltunski
      RubikNetwork network = RubikNetwork.getInstance();
247 4895fff6 Leszek Koltunski
248 6a083c6a Leszek Koltunski
      if( mIsSubmitting )  network.submit  ( this, mAct );
249
      else                 network.download( this, mAct );
250 946d9762 Leszek Koltunski
      }
251
252
    return mViews[position];
253 cc5ec229 Leszek Koltunski
    }
254
255
///////////////////////////////////////////////////////////////////////////////////////////////////
256
257
  @Override
258
  public void destroyItem(ViewGroup collection, int position, @NonNull Object view)
259
    {
260
    collection.removeView((View) view);
261
    }
262
263
///////////////////////////////////////////////////////////////////////////////////////////////////
264
265
  @Override
266
  public int getCount()
267
    {
268 4888e97c Leszek Koltunski
    return mNumTabs;
269 cc5ec229 Leszek Koltunski
    }
270
271
///////////////////////////////////////////////////////////////////////////////////////////////////
272
273
  @Override
274
  public boolean isViewFromObject(@NonNull View view, @NonNull Object object)
275
    {
276
    return view == object;
277
    }
278
  }