Revision e709e44d
Added by Leszek Koltunski about 3 years ago
src/main/java/org/distorted/main/RubikObjectLibInterface.java | ||
---|---|---|
307 | 307 |
} |
308 | 308 |
} |
309 | 309 |
|
310 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
|
311 |
|
|
312 |
public void onObjectCreated(long time) |
|
313 |
{ |
|
314 |
|
|
315 |
} |
|
316 |
|
|
310 | 317 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
311 | 318 |
|
312 | 319 |
public int getCurrentColor() |
src/main/java/org/distorted/main/RubikSurfaceView.java | ||
---|---|---|
108 | 108 |
RubikObjectLibInterface ref = new RubikObjectLibInterface(act); |
109 | 109 |
mObjectController = new ObjectControl(act,ref); |
110 | 110 |
mRenderer = new RubikRenderer(this); |
111 |
ObjectControl.setDmeshMode(true); |
|
111 | 112 |
|
112 | 113 |
final ActivityManager activityManager= (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE); |
113 | 114 |
|
src/main/java/org/distorted/solvers/SolverMain.java | ||
---|---|---|
159 | 159 |
objectString.append(FACE_NAMES[color]); |
160 | 160 |
} |
161 | 161 |
|
162 |
android.util.Log.e("D", objectString.toString()); |
|
163 |
|
|
164 | 162 |
return objectString.toString(); |
165 | 163 |
} |
166 | 164 |
|
src/main/java/org/distorted/tutorials/TutorialObjectLibInterface.java | ||
---|---|---|
41 | 41 |
public void onScrambleEffectFinished() { } |
42 | 42 |
public void onBeginRotation() { } |
43 | 43 |
public void onSolved() { } |
44 |
public void onObjectCreated(long time) { } |
|
44 | 45 |
public int getCurrentColor() { return 0; } |
45 | 46 |
public int cubitIsLocked(ObjectType type, int cubit) { return 0; } |
46 | 47 |
|
Also available in: Unified diff
Progress with PuzzleTester app.