/* * Copyright (C) 2010-2016 JPEXS, All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3.0 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. */ package com.jpexs.decompiler.flash.action.flashlite; import com.jpexs.decompiler.flash.SWFInputStream; import com.jpexs.decompiler.flash.SWFOutputStream; import com.jpexs.decompiler.flash.action.Action; import com.jpexs.decompiler.flash.action.LocalDataArea; import com.jpexs.decompiler.flash.action.model.StrictModeActionItem; import com.jpexs.decompiler.flash.action.parser.ActionParseException; import com.jpexs.decompiler.flash.action.parser.pcode.FlasmLexer; import com.jpexs.decompiler.graph.GraphSourceItem; import com.jpexs.decompiler.graph.GraphTargetItem; import com.jpexs.decompiler.graph.TranslateStack; import java.io.IOException; import java.util.HashMap; import java.util.List; /** * * @author JPEXS */ public class ActionStrictMode extends Action { public int mode; public ActionStrictMode(SWFInputStream sis) throws IOException { super(0x89, 1); mode = sis.readUI8("mode"); } public ActionStrictMode(FlasmLexer lexer) throws IOException, ActionParseException { super(0x89, 1); mode = (int) lexLong(lexer); } @Override protected void getContentBytes(SWFOutputStream sos) throws IOException { sos.writeUI8(mode); } /** * Gets the length of action converted to bytes * * @return Length */ @Override protected int getContentBytesLength() { return 1; } @Override public String toString() { return "StrictMode " + mode; } @Override public boolean execute(LocalDataArea lda) { return true; //TODO? } @Override public void translate(GraphSourceItem lineStartItem, TranslateStack stack, List<GraphTargetItem> output, HashMap<Integer, String> regNames, HashMap<String, GraphTargetItem> variables, HashMap<String, GraphTargetItem> functions, int staticOperation, String path) { output.add(new StrictModeActionItem(this, lineStartItem, mode)); } }