mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 04:30:45 +00:00
127 lines
4.5 KiB
Java
127 lines
4.5 KiB
Java
/*
|
|
* Copyright (C) 2010-2011 JPEXS
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package com.jpexs.asdec.abc.avm2.treemodel;
|
|
|
|
import com.jpexs.asdec.abc.avm2.ConstantPool;
|
|
import com.jpexs.asdec.abc.avm2.instructions.AVM2Instruction;
|
|
import com.jpexs.asdec.helpers.Highlighting;
|
|
import java.util.HashMap;
|
|
|
|
public abstract class TreeItem {
|
|
|
|
public static final int PRECEDENCE_PRIMARY = 0;
|
|
public static final int PRECEDENCE_POSTFIX = 1;
|
|
public static final int PRECEDENCE_UNARY = 2;
|
|
public static final int PRECEDENCE_MULTIPLICATIVE = 3;
|
|
public static final int PRECEDENCE_ADDITIVE = 4;
|
|
public static final int PRECEDENCE_BITWISESHIFT = 5;
|
|
public static final int PRECEDENCE_RELATIONAL = 6;
|
|
public static final int PRECEDENCE_EQUALITY = 7;
|
|
public static final int PRECEDENCE_BITWISEAND = 8;
|
|
public static final int PRECEDENCE_BITWISEXOR = 9;
|
|
public static final int PRECEDENCE_BITWISEOR = 10;
|
|
public static final int PRECEDENCE_LOGICALAND = 11;
|
|
public static final int PRECEDENCE_LOGICALOR = 12;
|
|
public static final int PRECEDENCE_CONDITIONAL = 13;
|
|
public static final int PRECEDENCE_ASSIGMENT = 14;
|
|
public static final int PRECEDENCE_COMMA = 15;
|
|
public static final int NOPRECEDENCE = 16;
|
|
public int precedence = NOPRECEDENCE;
|
|
public AVM2Instruction instruction;
|
|
|
|
public TreeItem(AVM2Instruction instruction, int precedence) {
|
|
this.instruction = instruction;
|
|
this.precedence = precedence;
|
|
}
|
|
|
|
public abstract String toString(ConstantPool constants, HashMap<Integer, String> localRegNames);
|
|
|
|
public String toStringNoH(ConstantPool constants, HashMap<Integer, String> localRegNames) {
|
|
return Highlighting.stripHilights(toString(constants, localRegNames));
|
|
}
|
|
|
|
public String toStringSemicoloned(ConstantPool constants, HashMap<Integer, String> localRegNames) {
|
|
return toString(constants, localRegNames) + (needsSemicolon() ? ";" : "");
|
|
}
|
|
|
|
public boolean needsSemicolon() {
|
|
return true;
|
|
}
|
|
|
|
protected String hilight(String str) {
|
|
if (instruction == null) {
|
|
return str;
|
|
}
|
|
return Highlighting.hilighOffset(str, instruction.offset);
|
|
}
|
|
|
|
public boolean isFalse() {
|
|
return false;
|
|
}
|
|
|
|
public boolean isTrue() {
|
|
return false;
|
|
}
|
|
|
|
protected String formatProperty(ConstantPool constants, TreeItem object, TreeItem propertyName, HashMap<Integer, String> localRegNames) {
|
|
String obStr = object.toString(constants, localRegNames);
|
|
if (object.precedence > PRECEDENCE_PRIMARY) {
|
|
obStr = "(" + obStr + ")";
|
|
}
|
|
if (object instanceof LocalRegTreeItem) {
|
|
if (((LocalRegTreeItem) object).computedValue instanceof FindPropertyTreeItem) {
|
|
obStr = "";
|
|
}
|
|
}
|
|
if (obStr.equals("")) {
|
|
return propertyName.toString(constants, localRegNames);
|
|
}
|
|
if (propertyName instanceof FullMultinameTreeItem) {
|
|
|
|
if (((FullMultinameTreeItem) propertyName).isRuntime()) {
|
|
return obStr + propertyName.toString(constants, localRegNames);
|
|
} else {
|
|
if (!obStr.equals("")) {
|
|
obStr += ".";
|
|
}
|
|
return obStr + ((FullMultinameTreeItem) propertyName).toString(constants, localRegNames);
|
|
}
|
|
} else {
|
|
return obStr + "[" + propertyName.toString(constants, localRegNames) + "]";
|
|
}
|
|
}
|
|
|
|
public TreeItem getNotCoerced() {
|
|
return this;
|
|
}
|
|
|
|
public TreeItem getThroughRegister() {
|
|
return this;
|
|
}
|
|
|
|
public static String localRegName(HashMap<Integer, String> localRegNames, int reg) {
|
|
if (localRegNames.containsKey(reg)) {
|
|
return localRegNames.get(reg);
|
|
} else {
|
|
if (reg == 0) {
|
|
return "this";
|
|
}
|
|
return "_loc" + reg + "_";
|
|
}
|
|
}
|
|
}
|