Project

General

Profile

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

magiccube / src / main / java / org / distorted / objects / RubikObjectCategoriesShape.java @ master

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2024 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// Magic Cube is proprietary software licensed under an EULA which you should have received      //
7
// along with the code. If not, check https://distorted.org/magic/License-Magic-Cube.html        //
8
///////////////////////////////////////////////////////////////////////////////////////////////////
9

    
10
package org.distorted.objects;
11

    
12
import static org.distorted.objectlib.metadata.Metadata.*;
13

    
14
import org.distorted.main.R;
15

    
16
import java.util.Arrays;
17

    
18
///////////////////////////////////////////////////////////////////////////////////////////////////
19

    
20
public class RubikObjectCategoriesShape extends RubikObjectCategories
21
{
22
  private void buildSort(int[] data)
23
    {
24
    int numObjects = data.length;
25
    int[] sorted = new int[numObjects];
26
    System.arraycopy(data, 0, sorted, 0, numObjects);
27

    
28
    Arrays.sort(sorted);
29

    
30
    int[] categories = new int[numObjects];
31
    int numCategories = 0;
32

    
33
    for(int o=0; o<numObjects; o++)
34
      if( o==0 || sorted[o-1]!=sorted[o] )
35
        {
36
        categories[numCategories] = sorted[o];
37
        numCategories++;
38
        }
39

    
40
    int lastChange = -1;
41
    int curr = 0;
42
    int[] numInCategory = new int[numCategories];
43

    
44
    for(int o=0; o<numObjects; o++)
45
      if( o==numObjects-1 || sorted[o]!=sorted[o+1] )
46
        {
47
        numInCategory[curr] = o-lastChange;
48
        curr++;
49
        lastChange = o;
50
        }
51

    
52
    mObjectIndices = new int[numCategories][];
53

    
54
    for(int c=0; c<numCategories; c++)
55
      {
56
      mObjectIndices[c] = new int[numInCategory[c]];
57

    
58
      int cat = categories[c];
59
      int index = 0;
60

    
61
      for(int o=0; o<numObjects; o++)
62
        if( data[o]==cat ) mObjectIndices[c][index++] = o;
63
      }
64
    }
65

    
66
///////////////////////////////////////////////////////////////////////////////////////////////////
67

    
68
  private int digestCategory(int cat)
69
    {
70
    int shape = (cat & 0x7);
71

    
72
    switch(shape)
73
      {
74
      case CATEGORY_SHAPE_HEX: int axis  = (cat & 0x1f) >> 3;
75
                               return (shape<<2) + axis;
76
      case CATEGORY_SHAPE_BAL: return (CATEGORY_SHAPE_OTH<<2);
77
      case CATEGORY_SHAPE_TET:
78
      case CATEGORY_SHAPE_OCT:
79
      case CATEGORY_SHAPE_DOD:
80
      case CATEGORY_SHAPE_ICO:
81
      case CATEGORY_SHAPE_OTH: return (shape<<2);
82
      }
83

    
84
    android.util.Log.e("D", "digestCategory: unknown shape "+shape);
85
    return 0;
86
    }
87

    
88

    
89
///////////////////////////////////////////////////////////////////////////////////////////////////
90

    
91
  private int getImage(int cat)
92
    {
93
    int shape = (cat & 0x1f) >> 2;
94

    
95
    switch(shape)
96
      {
97
      case CATEGORY_SHAPE_HEX: int axis  = (cat & 0x3);
98
                                    if( axis==CATEGORY_AXIS_FACE>>3 ) return R.drawable.shape_hex_face;
99
                               else if( axis==CATEGORY_AXIS_CORN>>3 ) return R.drawable.shape_hex_corn;
100
                               else if( axis==CATEGORY_AXIS_EDGE>>3 ) return R.drawable.shape_hex_edge;
101
                               else                                   return R.drawable.shape_hex_other;
102
      case CATEGORY_SHAPE_TET: return R.drawable.shape_tet;
103
      case CATEGORY_SHAPE_OCT: return R.drawable.shape_oct;
104
      case CATEGORY_SHAPE_DOD: return R.drawable.shape_dod;
105
      case CATEGORY_SHAPE_ICO: return R.drawable.shape_ico;
106
      case CATEGORY_SHAPE_BAL:
107
      case CATEGORY_SHAPE_OTH: return R.drawable.shape_oth;
108
      }
109

    
110
    android.util.Log.e("D", "getImage: unknown shape "+shape);
111
    return 0;
112
    }
113

    
114
///////////////////////////////////////////////////////////////////////////////////////////////////
115

    
116
  void buildIndices()
117
    {
118
    int numObjects = RubikObjectList.getNumObjects();
119
    int[] cats = new int[numObjects];
120

    
121
    for(int o=0; o<numObjects; o++)
122
      {
123
      RubikObject obj = RubikObjectList.getObject(o);
124
      int cat = obj==null ? 0 : obj.getCategory();
125
      cats[o] = digestCategory(cat);
126
      }
127

    
128
    buildSort(cats);
129
    }
130

    
131
///////////////////////////////////////////////////////////////////////////////////////////////////
132

    
133
  void buildTitle()
134
    {
135
    mIconIDs = new int[mNumCategories];
136

    
137
    for(int t=0; t<mNumCategories; t++)
138
      {
139
      int obj = mObjectIndices[t][0];
140
      RubikObject object = RubikObjectList.getObject(obj);
141
      int cat = object==null ? 0 : object.getCategory();
142
      int category = digestCategory(cat);
143
      mIconIDs[t] = getImage(category);
144
      }
145
    }
146
}
(5-5/7)