亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? swftagtypesimpl.java

?? java版本的flash文件(swf)播放器
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/****************************************************************
 * Copyright (c) 2001, David N. Main, All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or
 * without modification, are permitted provided that the 
 * following conditions are met:
 *
 * 1. Redistributions of source code must retain the above 
 * copyright notice, this list of conditions and the following 
 * disclaimer. 
 * 
 * 2. Redistributions in binary form must reproduce the above 
 * copyright notice, this list of conditions and the following 
 * disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * 3. The name of the author may not be used to endorse or 
 * promote products derived from this software without specific 
 * prior written permission. 
 * 
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 
 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 
 * AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 ****************************************************************/
package com.anotherbigidea.flash.writers;

import java.io.IOException;
import java.io.InputStream;
import java.util.Vector;

import com.anotherbigidea.flash.interfaces.SWFActions;
import com.anotherbigidea.flash.interfaces.SWFFileSignature;
import com.anotherbigidea.flash.interfaces.SWFShape;
import com.anotherbigidea.flash.interfaces.SWFTagTypes;
import com.anotherbigidea.flash.interfaces.SWFText;
import com.anotherbigidea.flash.interfaces.SWFVectors;
import com.anotherbigidea.flash.structs.AlphaColor;
import com.anotherbigidea.flash.structs.AlphaTransform;
import com.anotherbigidea.flash.structs.Color;
import com.anotherbigidea.flash.structs.ColorTransform;
import com.anotherbigidea.flash.structs.Matrix;
import com.anotherbigidea.flash.structs.Rect;
import com.anotherbigidea.flash.structs.SoundInfo;

/**
 * A pass-through implementation of the SWFTagTypes and SWFFileSignature 
 * interfaces - useful as a base class
 */
public class SWFTagTypesImpl implements SWFTagTypes, SWFFileSignature 
{
    protected SWFTagTypes mTagtypes;
    
    /**
     * @param tags may be null
     */
    public SWFTagTypesImpl( SWFTagTypes tags )
    {
        mTagtypes = tags;
    }
    
    /**
     * SWFTags interface
     */    
    public void tag( int tagType, boolean longTag, byte[] contents ) 
        throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tag( tagType, longTag, contents );
    }

	/**
	 * @see SWFFileSignature#signature(String)
	 */
	public void signature( String sig ) {
		if( mTagtypes != null && mTagtypes instanceof SWFFileSignature ) {
			((SWFFileSignature) mTagtypes).signature( sig );
		}
	}

    /**
     * SWFHeader interface.
     * Sets movie length to -1 to force a recalculation since the length
     * cannot be guaranteed to be the same as the original.
     */
    public void header( int version, long length,
                        int twipsWidth, int twipsHeight,
                        int frameRate, int frameCount ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.header( version, length, twipsWidth, twipsHeight,
                                        frameRate, frameCount );
    }
    
    /**
     * SWFTagTypes interface
     */
    public void tagEnd() throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagEnd();
    }

    /**
     * SWFTagTypes interface
     */
    public void tagDefineSound( int id, int format, int frequency,
                                boolean bits16, boolean stereo,
                                int sampleCount, byte[] soundData ) 
        throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagDefineSound( id, format, frequency,
                                bits16, stereo, sampleCount, soundData );
    }
    
    /**
     * SWFTagTypes interface
     */
    public void tagDefineButtonSound( int buttonId,
                    int rollOverSoundId, SoundInfo rollOverSoundInfo,
                    int rollOutSoundId,  SoundInfo rollOutSoundInfo,
                    int pressSoundId,    SoundInfo pressSoundInfo,
                    int releaseSoundId,  SoundInfo releaseSoundInfo )
        throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagDefineButtonSound( buttonId,
                    rollOverSoundId, rollOverSoundInfo,
                    rollOutSoundId,  rollOutSoundInfo,
                    pressSoundId,    pressSoundInfo,
                    releaseSoundId,  releaseSoundInfo );
    }    
    
    /**
     * SWFTagTypes interface
     */
    public void tagStartSound( int soundId, SoundInfo info ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagStartSound( soundId, info );
    }
    
    /**
     * SWFTagTypes interface
     */
    public void tagSoundStreamHead( 
        int playbackFrequency, boolean playback16bit, boolean playbackStereo,
        int streamFormat, int streamFrequency, boolean stream16bit, boolean streamStereo,
        int averageSampleCount ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagSoundStreamHead( 
            playbackFrequency, playback16bit, playbackStereo,
            streamFormat, streamFrequency, stream16bit, streamStereo,
            averageSampleCount );
    }
    
    /**
     * SWFTagTypes interface
     */
    public void tagSoundStreamHead2( 
        int playbackFrequency, boolean playback16bit, boolean playbackStereo,
        int streamFormat, int streamFrequency, boolean stream16bit, boolean streamStereo,
        int averageSampleCount ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagSoundStreamHead2( 
            playbackFrequency, playback16bit, playbackStereo,
            streamFormat, streamFrequency, stream16bit, streamStereo,
            averageSampleCount );
    }
    
    /**
     * SWFTagTypes interface
     */
    public void tagSoundStreamBlock( byte[] soundData ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagSoundStreamBlock( soundData );
    }
    
    /**
     * SWFTagTypes interface
     */
    public void tagSerialNumber( String serialNumber ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagSerialNumber( serialNumber );
    }
    
    /**
     * SWFTagTypes interface
     */
    public void tagGenerator( byte[] data ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagGenerator( data );
    }
    
    /**
     * SWFTagTypes interface
     */
    public void tagGeneratorText( byte[] data ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagGeneratorText( data );
    }

    /**
     * SWFTagTypes interface
     */
    public void tagGeneratorFont( byte[] data ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagGeneratorFont( data );
    }     
    
    /**
     * SWFTagTypes interface
     */
    public void tagGeneratorCommand( byte[] data ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagGeneratorCommand( data );
    }    

    /**
     * SWFTagTypes interface
     */
    public void tagNameCharacter( byte[] data ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagNameCharacter( data );
    }        
    
    /**
     * SWFTagTypes interface
     */
    public void tagDefineBits( int id, byte[] imageData ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagDefineBits( id, imageData );
    }        
    
    /**
     * SWFTagTypes interface
     */
    public void tagJPEGTables( byte[] jpegEncodingData ) throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagJPEGTables( jpegEncodingData );
    }        

    /**
     * SWFTagTypes interface
     */
    public void tagDefineBitsJPEG3( int id, byte[] imageData, byte[] alphaData ) 
        throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagDefineBitsJPEG3( id, imageData, alphaData );
    }        
        
    /**
     * SWFTagTypes interface
     */
    public void tagShowFrame() throws IOException
    {
        if( mTagtypes != null ) mTagtypes.tagShowFrame();
    }
    
    /**
     * SWFTagTypes interface
     */
    public SWFActions tagDoAction() throws IOException
    {
        if( mTagtypes != null ) return mTagtypes.tagDoAction();
        return null;
    }
    
	/**
	 * SWFTagTypes interface
	 */
	public SWFActions tagDoInitAction( int spriteId ) throws IOException
	{
		if( mTagtypes != null ) return mTagtypes.tagDoInitAction( spriteId );
		return null;
	}
	    
    /**
     * SWFTagTypes interface
     */
    public SWFShape tagDefineShape( int id, Rect outline ) throws IOException
    {
        if( mTagtypes != null ) return mTagtypes.tagDefineShape( id, outline );
        return null;
    }
    
    /**
     * SWFTagTypes interface
     */
    public SWFShape tagDefineShape2( int id, Rect outline ) throws IOException
    {
        if( mTagtypes != null ) return mTagtypes.tagDefineShape2( id, outline );
        return null;
    }
    
    /**
     * SWFTagTypes interface
     */
    public SWFShape tagDefineShape3( int id, Rect outline ) throws IOException
    {
        if( mTagtypes != null ) return mTagtypes.tagDefineShape3( id, outline );
        return null;
    }    
    

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
综合网在线视频| 午夜精品福利久久久| 26uuu国产电影一区二区| 欧美一级片在线看| 欧美一区二区三区四区五区| 欧美三级电影在线看| 欧美午夜不卡视频| 在线免费观看成人短视频| 91在线无精精品入口| 成人aa视频在线观看| 波多野结衣视频一区| 99视频有精品| 色综合天天综合给合国产| 91久久精品一区二区三区| 色婷婷激情一区二区三区| 日本韩国一区二区| 欧美色网一区二区| 欧美肥妇毛茸茸| 欧美www视频| 国产欧美一区二区精品久导航| 国产亚洲精品bt天堂精选| 国产日韩欧美精品电影三级在线| 国产婷婷色一区二区三区在线| 国产片一区二区| 成人欧美一区二区三区白人| 亚洲精品写真福利| 亚洲成av人在线观看| 美国十次综合导航| 国产成人精品免费| 91麻豆蜜桃一区二区三区| 久久99精品久久久| 成人黄色在线网站| 欧美在线视频日韩| 日韩免费电影网站| 国产精品久久久久天堂| 一区二区在线观看免费| 日本不卡一区二区三区| 国产91对白在线观看九色| 97久久超碰精品国产| 欧美区一区二区三区| 精品国内二区三区| 国产精品国产三级国产aⅴ原创| 一区二区高清在线| 紧缚捆绑精品一区二区| 不卡电影免费在线播放一区| 欧洲在线/亚洲| 2022国产精品视频| 亚洲人成精品久久久久久| 日韩国产欧美三级| 波多野结衣一区二区三区| 91 com成人网| 中文字幕va一区二区三区| 亚洲国产视频在线| 国产精品66部| 欧美日韩一区二区三区视频| 久久一区二区三区国产精品| 亚洲精品免费电影| 国产福利不卡视频| 欧美日韩电影一区| 亚洲欧美在线高清| 另类小说一区二区三区| 97超碰欧美中文字幕| 精品伦理精品一区| 亚洲一区二区欧美激情| 国产精品性做久久久久久| 欧美日韩国产a| 亚洲丝袜另类动漫二区| 狠狠狠色丁香婷婷综合激情| 欧美三区在线观看| 欧美国产一区在线| 麻豆传媒一区二区三区| 91麻豆成人久久精品二区三区| 日韩精品一区二区三区中文不卡 | 欧美r级在线观看| 亚洲免费观看高清完整版在线 | 欧美人动与zoxxxx乱| 1024国产精品| 国产精华液一区二区三区| 欧美久久久久久蜜桃| 亚洲美腿欧美偷拍| 成人综合日日夜夜| 精品国产伦一区二区三区免费| 一区二区三区在线看| 成人毛片老司机大片| 精品av综合导航| 日本女人一区二区三区| 欧美天天综合网| 亚洲日本成人在线观看| 国产69精品久久久久777| 欧美www视频| 久久99精品国产麻豆婷婷| 欧美日韩mp4| 亚洲国产精品麻豆| 精品视频在线免费看| 亚洲精品国产一区二区三区四区在线| 成人在线视频一区| 国产亚洲精品精华液| 国产二区国产一区在线观看| 欧美变态口味重另类| 久久机这里只有精品| 日韩欧美国产成人一区二区| 日日夜夜精品视频天天综合网| 日本电影欧美片| 综合激情成人伊人| 91丝袜美腿高跟国产极品老师 | 最近中文字幕一区二区三区| 国产91丝袜在线播放九色| 国产日韩一级二级三级| 懂色av中文一区二区三区| 欧美激情在线看| 成人午夜av在线| 国产午夜精品一区二区三区嫩草 | 91亚洲资源网| 亚洲视频一二三| 色美美综合视频| 亚洲一卡二卡三卡四卡| 欧美综合视频在线观看| 亚洲高清在线视频| 欧美一区三区四区| 极品少妇xxxx精品少妇偷拍| 国产亚洲综合在线| 成人av网站在线观看免费| 亚洲日本在线天堂| 欧美三级电影在线看| 蜜臀久久99精品久久久久久9| 精品国产一二三区| 国产二区国产一区在线观看| 亚洲欧美自拍偷拍色图| 精品视频资源站| 久久精品国产77777蜜臀| 久久久久久黄色| 99国产精品久久| 亚洲图片欧美色图| 欧美tickling挠脚心丨vk| 丁香激情综合国产| 一区二区三区久久| 欧美一级片在线| 国产成+人+日韩+欧美+亚洲| 亚洲欧美日韩国产综合在线| 欧美年轻男男videosbes| 六月丁香婷婷色狠狠久久| 国产精品久久影院| 欧美日韩国产高清一区二区 | 日本美女一区二区| 欧美经典一区二区| 欧美色成人综合| 国产精品香蕉一区二区三区| 亚洲精品视频免费观看| 91麻豆精品国产91久久久更新时间| 蜜臀av一区二区在线免费观看 | 国产亚洲成av人在线观看导航| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 亚洲va欧美va天堂v国产综合| 欧美一区二区黄| 成人av综合在线| 日韩在线卡一卡二| 欧美国产视频在线| 欧美三日本三级三级在线播放| 国产美女视频一区| 亚洲国产毛片aaaaa无费看 | 亚洲第一主播视频| 久久色视频免费观看| 91久久香蕉国产日韩欧美9色| 精品影视av免费| 亚洲一区二区三区中文字幕| 精品福利在线导航| 欧美性高清videossexo| 国产精品一区二区你懂的| 亚洲第一成人在线| 中文字幕av一区二区三区高| 91麻豆精品久久久久蜜臀| 97精品久久久久中文字幕 | 色999日韩国产欧美一区二区| 美女在线观看视频一区二区| 亚洲另类色综合网站| 久久久久青草大香线综合精品| 欧美日本在线播放| 99精品欧美一区二区三区小说| 久久超碰97人人做人人爱| 亚洲一区二区视频在线观看| 中文久久乱码一区二区| 欧美电影精品一区二区| 欧美影院一区二区三区| 成人av资源站| 国产999精品久久久久久| 国内一区二区视频| 日产精品久久久久久久性色 | 色网综合在线观看| 粉嫩aⅴ一区二区三区四区| 狠狠色狠狠色综合| 日本在线播放一区二区三区| 亚洲老妇xxxxxx| 中文字幕欧美三区| 久久久亚洲综合| 欧美mv日韩mv| 制服视频三区第一页精品| 欧美精品日韩综合在线| 精品视频在线免费看| 欧美日韩色一区| 在线观看视频91|