Project

General

Profile

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

magiccube / src / main / java / org / distorted / dialogs / RubikDialogPatternView.java @ fcd5b990

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.content.Context;
23
import androidx.fragment.app.FragmentActivity;
24
import android.util.AttributeSet;
25
import android.view.View;
26
import android.widget.ExpandableListView;
27
import android.widget.FrameLayout;
28

    
29
import org.distorted.main.R;
30
import org.distorted.main.RubikActivity;
31
import org.distorted.objects.ObjectList;
32
import org.distorted.patterns.RubikPattern;
33
import org.distorted.patterns.RubikPatternList;
34
import org.distorted.screens.ScreenList;
35
import org.distorted.screens.RubikScreenPattern;
36

    
37
///////////////////////////////////////////////////////////////////////////////////////////////////
38

    
39
public class RubikDialogPatternView extends FrameLayout
40
  {
41
  private ExpandableListView mListView;
42
  private RubikDialogPatternListAdapter mListAdapter;
43
  private RubikDialogPattern mDialog;
44
  private int mTab, mPos;
45
  private int mExpandedGroup;
46

    
47
///////////////////////////////////////////////////////////////////////////////////////////////////
48

    
49
  public RubikDialogPatternView(Context context, AttributeSet attrs, int defStyle)
50
    {
51
    super(context, attrs, defStyle);
52
    }
53

    
54
///////////////////////////////////////////////////////////////////////////////////////////////////
55

    
56
  public RubikDialogPatternView(Context context, AttributeSet attrs)
57
    {
58
    super(context, attrs);
59
    }
60

    
61
///////////////////////////////////////////////////////////////////////////////////////////////////
62

    
63
  public RubikDialogPatternView(FragmentActivity act, RubikDialogPattern dialog, int position)
64
    {
65
    super(act);
66

    
67
    final RubikActivity ract = (RubikActivity)getContext();
68

    
69
    mTab = position;
70
    mDialog = dialog;
71

    
72
    RubikPattern pattern = RubikPattern.getInstance();
73
    mExpandedGroup = pattern.recallExpanded(position);
74

    
75
    View tab = inflate( act, R.layout.dialog_pattern_tab, null);
76

    
77
    mListView = tab.findViewById(R.id.patternListView);
78
    mListAdapter = new RubikDialogPatternListAdapter(act,mTab, ract.getScreenHeightInPixels());
79
    mListView.setAdapter(mListAdapter);
80

    
81
    if( mExpandedGroup>=0 )
82
      {
83
      mListView.expandGroup(mExpandedGroup);
84
      }
85

    
86
    int visible = pattern.recallVisiblePos(mTab);
87
    mListView.setSelectionFromTop(visible,0);
88

    
89
    mListView.setOnChildClickListener(new ExpandableListView.OnChildClickListener()
90
      {
91
      @Override
92
      public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id)
93
        {
94
        RubikPattern pattern = RubikPattern.getInstance();
95
        int[][] moves   = pattern.reInitialize(mTab, groupPosition, childPosition);
96
        ObjectList list = RubikPatternList.getObject(mTab);
97
        int size        = RubikPatternList.getSize(mTab);
98

    
99
        ract.setupObject(list, size, moves);
100

    
101
        ScreenList.switchState(ract, ScreenList.PATT);
102
        RubikScreenPattern state = (RubikScreenPattern) ScreenList.PATT.getStateClass();
103
        state.setPattern(ract, mTab, groupPosition, childPosition);
104

    
105
        mDialog.rememberState();
106
        mDialog.dismiss();
107

    
108
        return false;
109
        }
110
      });
111

    
112
    mListView.setOnGroupExpandListener(new ExpandableListView.OnGroupExpandListener()
113
      {
114
      @Override
115
      public void onGroupExpand(int groupPosition)
116
        {
117
        if(mExpandedGroup!=-1 && groupPosition!=mExpandedGroup)
118
          {
119
          mListView.collapseGroup(mExpandedGroup);
120
          }
121

    
122
        mExpandedGroup = groupPosition;
123
        }
124
      });
125

    
126
    addView(tab);
127
    }
128

    
129
///////////////////////////////////////////////////////////////////////////////////////////////////
130

    
131
  int getCurrentCategory()
132
    {
133
    return mPos;
134
    }
135

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

    
138
  int getCurrentVisiblePos()
139
    {
140
    return mListView.getFirstVisiblePosition();
141
    }
142

    
143
///////////////////////////////////////////////////////////////////////////////////////////////////
144

    
145
  int getExpanded()
146
    {
147
    return mExpandedGroup;
148
    }
149
  }
(8-8/18)