mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
275 lines
11 KiB
Java
275 lines
11 KiB
Java
package androidx.constraintlayout.widget;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.TypedArray;
|
|
import android.util.Log;
|
|
import android.util.SparseArray;
|
|
import android.util.Xml;
|
|
import java.io.IOException;
|
|
import java.util.ArrayList;
|
|
import java.util.Iterator;
|
|
import org.xmlpull.v1.XmlPullParser;
|
|
import org.xmlpull.v1.XmlPullParserException;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class StateSet {
|
|
private static final boolean DEBUG = false;
|
|
public static final String TAG = "ConstraintLayoutStates";
|
|
ConstraintSet mDefaultConstraintSet;
|
|
int mDefaultState = -1;
|
|
int mCurrentStateId = -1;
|
|
int mCurrentConstraintNumber = -1;
|
|
private SparseArray<State> mStateList = new SparseArray<>();
|
|
private SparseArray<ConstraintSet> mConstraintSetMap = new SparseArray<>();
|
|
private ConstraintsChangedListener mConstraintsChangedListener = null;
|
|
|
|
public void setOnConstraintsChanged(ConstraintsChangedListener constraintsChangedListener) {
|
|
this.mConstraintsChangedListener = constraintsChangedListener;
|
|
}
|
|
|
|
public StateSet(Context context, XmlPullParser xmlPullParser) {
|
|
load(context, xmlPullParser);
|
|
}
|
|
|
|
private void load(Context context, XmlPullParser xmlPullParser) {
|
|
char c;
|
|
TypedArray obtainStyledAttributes = context.obtainStyledAttributes(Xml.asAttributeSet(xmlPullParser), R.styleable.StateSet);
|
|
int indexCount = obtainStyledAttributes.getIndexCount();
|
|
for (int i = 0; i < indexCount; i++) {
|
|
int index = obtainStyledAttributes.getIndex(i);
|
|
if (index == R.styleable.StateSet_defaultState) {
|
|
this.mDefaultState = obtainStyledAttributes.getResourceId(index, this.mDefaultState);
|
|
}
|
|
}
|
|
try {
|
|
int eventType = xmlPullParser.getEventType();
|
|
State state = null;
|
|
while (eventType != 1) {
|
|
if (eventType == 0) {
|
|
xmlPullParser.getName();
|
|
} else if (eventType == 2) {
|
|
String name = xmlPullParser.getName();
|
|
switch (name.hashCode()) {
|
|
case 80204913:
|
|
if (name.equals("State")) {
|
|
c = 2;
|
|
break;
|
|
}
|
|
break;
|
|
case 1301459538:
|
|
if (name.equals("LayoutDescription")) {
|
|
c = 0;
|
|
break;
|
|
}
|
|
break;
|
|
case 1382829617:
|
|
if (name.equals("StateSet")) {
|
|
c = 1;
|
|
break;
|
|
}
|
|
break;
|
|
case 1901439077:
|
|
if (name.equals("Variant")) {
|
|
c = 3;
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
c = 65535;
|
|
if (c != 0 && c != 1) {
|
|
if (c == 2) {
|
|
state = new State(context, xmlPullParser);
|
|
this.mStateList.put(state.mId, state);
|
|
} else if (c == 3) {
|
|
Variant variant = new Variant(context, xmlPullParser);
|
|
if (state != null) {
|
|
state.add(variant);
|
|
}
|
|
} else {
|
|
Log.v("ConstraintLayoutStates", "unknown tag " + name);
|
|
}
|
|
}
|
|
} else if (eventType != 3) {
|
|
continue;
|
|
} else if ("StateSet".equals(xmlPullParser.getName())) {
|
|
return;
|
|
}
|
|
eventType = xmlPullParser.next();
|
|
}
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
} catch (XmlPullParserException e2) {
|
|
e2.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public boolean needsToChange(int i, float f, float f2) {
|
|
int i2 = this.mCurrentStateId;
|
|
if (i2 != i) {
|
|
return true;
|
|
}
|
|
State valueAt = i == -1 ? this.mStateList.valueAt(0) : this.mStateList.get(i2);
|
|
return (this.mCurrentConstraintNumber == -1 || !valueAt.mVariants.get(this.mCurrentConstraintNumber).match(f, f2)) && this.mCurrentConstraintNumber != valueAt.findMatch(f, f2);
|
|
}
|
|
|
|
public int stateGetConstraintID(int i, int i2, int i3) {
|
|
return updateConstraints(-1, i, i2, i3);
|
|
}
|
|
|
|
public int convertToConstraintSet(int i, int i2, float f, float f2) {
|
|
State state = this.mStateList.get(i2);
|
|
if (state == null) {
|
|
return i2;
|
|
}
|
|
if (f == -1.0f || f2 == -1.0f) {
|
|
if (state.mConstraintID == i) {
|
|
return i;
|
|
}
|
|
Iterator<Variant> it = state.mVariants.iterator();
|
|
while (it.hasNext()) {
|
|
if (i == it.next().mConstraintID) {
|
|
return i;
|
|
}
|
|
}
|
|
return state.mConstraintID;
|
|
}
|
|
Iterator<Variant> it2 = state.mVariants.iterator();
|
|
Variant variant = null;
|
|
while (it2.hasNext()) {
|
|
Variant next = it2.next();
|
|
if (next.match(f, f2)) {
|
|
if (i == next.mConstraintID) {
|
|
return i;
|
|
}
|
|
variant = next;
|
|
}
|
|
}
|
|
if (variant != null) {
|
|
return variant.mConstraintID;
|
|
}
|
|
return state.mConstraintID;
|
|
}
|
|
|
|
public int updateConstraints(int i, int i2, float f, float f2) {
|
|
State state;
|
|
int findMatch;
|
|
if (i != i2) {
|
|
State state2 = this.mStateList.get(i2);
|
|
if (state2 == null) {
|
|
return -1;
|
|
}
|
|
int findMatch2 = state2.findMatch(f, f2);
|
|
return findMatch2 == -1 ? state2.mConstraintID : state2.mVariants.get(findMatch2).mConstraintID;
|
|
}
|
|
if (i2 == -1) {
|
|
state = this.mStateList.valueAt(0);
|
|
} else {
|
|
state = this.mStateList.get(this.mCurrentStateId);
|
|
}
|
|
if (state == null) {
|
|
return -1;
|
|
}
|
|
return ((this.mCurrentConstraintNumber == -1 || !state.mVariants.get(i).match(f, f2)) && i != (findMatch = state.findMatch(f, f2))) ? findMatch == -1 ? state.mConstraintID : state.mVariants.get(findMatch).mConstraintID : i;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
/* loaded from: classes.dex */
|
|
public static class State {
|
|
int mConstraintID;
|
|
int mId;
|
|
boolean mIsLayout;
|
|
ArrayList<Variant> mVariants = new ArrayList<>();
|
|
|
|
public State(Context context, XmlPullParser xmlPullParser) {
|
|
this.mConstraintID = -1;
|
|
this.mIsLayout = false;
|
|
TypedArray obtainStyledAttributes = context.obtainStyledAttributes(Xml.asAttributeSet(xmlPullParser), R.styleable.State);
|
|
int indexCount = obtainStyledAttributes.getIndexCount();
|
|
for (int i = 0; i < indexCount; i++) {
|
|
int index = obtainStyledAttributes.getIndex(i);
|
|
if (index == R.styleable.State_android_id) {
|
|
this.mId = obtainStyledAttributes.getResourceId(index, this.mId);
|
|
} else if (index == R.styleable.State_constraints) {
|
|
this.mConstraintID = obtainStyledAttributes.getResourceId(index, this.mConstraintID);
|
|
String resourceTypeName = context.getResources().getResourceTypeName(this.mConstraintID);
|
|
context.getResources().getResourceName(this.mConstraintID);
|
|
if ("layout".equals(resourceTypeName)) {
|
|
this.mIsLayout = true;
|
|
}
|
|
}
|
|
}
|
|
obtainStyledAttributes.recycle();
|
|
}
|
|
|
|
void add(Variant variant) {
|
|
this.mVariants.add(variant);
|
|
}
|
|
|
|
public int findMatch(float f, float f2) {
|
|
for (int i = 0; i < this.mVariants.size(); i++) {
|
|
if (this.mVariants.get(i).match(f, f2)) {
|
|
return i;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
/* loaded from: classes.dex */
|
|
public static class Variant {
|
|
int mConstraintID;
|
|
int mId;
|
|
boolean mIsLayout;
|
|
float mMaxHeight;
|
|
float mMaxWidth;
|
|
float mMinHeight;
|
|
float mMinWidth;
|
|
|
|
public Variant(Context context, XmlPullParser xmlPullParser) {
|
|
this.mMinWidth = Float.NaN;
|
|
this.mMinHeight = Float.NaN;
|
|
this.mMaxWidth = Float.NaN;
|
|
this.mMaxHeight = Float.NaN;
|
|
this.mConstraintID = -1;
|
|
this.mIsLayout = false;
|
|
TypedArray obtainStyledAttributes = context.obtainStyledAttributes(Xml.asAttributeSet(xmlPullParser), R.styleable.Variant);
|
|
int indexCount = obtainStyledAttributes.getIndexCount();
|
|
for (int i = 0; i < indexCount; i++) {
|
|
int index = obtainStyledAttributes.getIndex(i);
|
|
if (index == R.styleable.Variant_constraints) {
|
|
this.mConstraintID = obtainStyledAttributes.getResourceId(index, this.mConstraintID);
|
|
String resourceTypeName = context.getResources().getResourceTypeName(this.mConstraintID);
|
|
context.getResources().getResourceName(this.mConstraintID);
|
|
if ("layout".equals(resourceTypeName)) {
|
|
this.mIsLayout = true;
|
|
}
|
|
} else if (index == R.styleable.Variant_region_heightLessThan) {
|
|
this.mMaxHeight = obtainStyledAttributes.getDimension(index, this.mMaxHeight);
|
|
} else if (index == R.styleable.Variant_region_heightMoreThan) {
|
|
this.mMinHeight = obtainStyledAttributes.getDimension(index, this.mMinHeight);
|
|
} else if (index == R.styleable.Variant_region_widthLessThan) {
|
|
this.mMaxWidth = obtainStyledAttributes.getDimension(index, this.mMaxWidth);
|
|
} else if (index == R.styleable.Variant_region_widthMoreThan) {
|
|
this.mMinWidth = obtainStyledAttributes.getDimension(index, this.mMinWidth);
|
|
} else {
|
|
Log.v("ConstraintLayoutStates", "Unknown tag");
|
|
}
|
|
}
|
|
obtainStyledAttributes.recycle();
|
|
}
|
|
|
|
boolean match(float f, float f2) {
|
|
if (!Float.isNaN(this.mMinWidth) && f < this.mMinWidth) {
|
|
return false;
|
|
}
|
|
if (!Float.isNaN(this.mMinHeight) && f2 < this.mMinHeight) {
|
|
return false;
|
|
}
|
|
if (Float.isNaN(this.mMaxWidth) || f <= this.mMaxWidth) {
|
|
return Float.isNaN(this.mMaxHeight) || f2 <= this.mMaxHeight;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|