mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 13:50:46 +00:00
98 lines
3.6 KiB
Java
98 lines
3.6 KiB
Java
/*
|
|
* Copyright (C) 2010-2013 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.decompiler.flash.action.model;
|
|
|
|
import com.jpexs.decompiler.flash.action.swf5.ActionGetMember;
|
|
import com.jpexs.decompiler.graph.GraphSourceItem;
|
|
import com.jpexs.decompiler.graph.GraphSourceItemPos;
|
|
import com.jpexs.decompiler.graph.GraphTargetItem;
|
|
import com.jpexs.decompiler.graph.SourceGenerator;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class GetMemberActionItem extends ActionItem {
|
|
|
|
public GraphTargetItem object;
|
|
public GraphTargetItem memberName;
|
|
|
|
@Override
|
|
public List<GraphTargetItem> getAllSubItems() {
|
|
List<GraphTargetItem> ret = new ArrayList<>();
|
|
ret.add(object);
|
|
return ret;
|
|
}
|
|
|
|
public GetMemberActionItem(GraphSourceItem instruction, GraphTargetItem object, GraphTargetItem memberName) {
|
|
super(instruction, PRECEDENCE_PRIMARY);
|
|
this.object = object;
|
|
this.memberName = memberName;
|
|
}
|
|
|
|
@Override
|
|
public String toString(boolean highlight, ConstantPool constants) {
|
|
if (!((memberName instanceof DirectValueActionItem) && (((DirectValueActionItem) memberName).value instanceof String))) {
|
|
//if(!(functionName instanceof GetVariableActionItem))
|
|
return object.toString(highlight, constants) + hilight("[", highlight) + stripQuotes(memberName, constants, highlight) + hilight("]", highlight);
|
|
}
|
|
return object.toString(highlight, constants) + hilight(".", highlight) + stripQuotes(memberName, constants, highlight);
|
|
}
|
|
|
|
@Override
|
|
public List<GraphSourceItemPos> getNeededSources() {
|
|
List<GraphSourceItemPos> ret = super.getNeededSources();
|
|
ret.addAll(object.getNeededSources());
|
|
ret.addAll(memberName.getNeededSources());
|
|
return ret;
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
int hash = 5;
|
|
hash = 47 * hash + (this.object != null ? this.object.hashCode() : 0);
|
|
hash = 47 * hash + (this.memberName != null ? this.memberName.hashCode() : 0);
|
|
return hash;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object obj) {
|
|
if (obj == null) {
|
|
return false;
|
|
}
|
|
if (getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
final GetMemberActionItem other = (GetMemberActionItem) obj;
|
|
if (this.object != other.object && (this.object == null || !this.object.equals(other.object))) {
|
|
return false;
|
|
}
|
|
if (this.memberName != other.memberName && (this.memberName == null || !this.memberName.equals(other.memberName))) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public List<GraphSourceItem> toSource(List<Object> localData, SourceGenerator generator) {
|
|
return toSourceMerge(localData, generator, object, memberName, new ActionGetMember());
|
|
}
|
|
|
|
@Override
|
|
public boolean hasReturnValue() {
|
|
return true;
|
|
}
|
|
}
|