mirror of https://github.com/PCSX2/pcsx2.git
77 lines
2.8 KiB
C#
77 lines
2.8 KiB
C#
/*
|
|
* Copyright (C) 2009-2011 Ferreri Alessio
|
|
* Copyright (C) 2009-2018 PCSX2 Dev Team
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace GSDumpGUI
|
|
{
|
|
[Serializable]
|
|
public class GIFPrim : GIFUtil
|
|
{
|
|
public GS_PRIM PrimitiveType;
|
|
public GSIIP IIP;
|
|
public bool TME;
|
|
public bool FGE;
|
|
public bool ABE;
|
|
public bool AA1;
|
|
public GSFST FST;
|
|
public GSCTXT CTXT;
|
|
public GSFIX FIX;
|
|
|
|
static internal GIFPrim ExtractGIFPrim(UInt32 LowData)
|
|
{
|
|
GIFPrim pr = new GIFPrim();
|
|
pr.PrimitiveType = (GS_PRIM)GetBit(LowData, 0, 3);
|
|
pr.IIP = (GSIIP)GetBit(LowData, 3, 1);
|
|
pr.TME = Convert.ToBoolean(GetBit(LowData, 4, 1));
|
|
pr.FGE = Convert.ToBoolean(GetBit(LowData, 5, 1));
|
|
pr.ABE = Convert.ToBoolean(GetBit(LowData, 6, 1));
|
|
pr.AA1 = Convert.ToBoolean(GetBit(LowData, 7, 1));
|
|
pr.FST = (GSFST)(GetBit(LowData, 8, 1));
|
|
pr.CTXT = (GSCTXT)(GetBit(LowData, 9, 1));
|
|
pr.FIX = (GSFIX)(GetBit(LowData, 10, 1));
|
|
return pr;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return "Primitive Type : " + PrimitiveType.ToString() + "@IIP : " + IIP.ToString() + "@TME : " + TME.ToString() + "@FGE : " + FGE.ToString()
|
|
+ "@ABE : " + ABE.ToString() + "@AA1 : " + AA1.ToString() + "@FST : " + FST.ToString() + "@CTXT : " + CTXT.ToString() + "@FIX : " + FIX.ToString();
|
|
}
|
|
}
|
|
|
|
public enum GS_PRIM
|
|
{
|
|
GS_POINTLIST = 0,
|
|
GS_LINELIST = 1,
|
|
GS_LINESTRIP = 2,
|
|
GS_TRIANGLELIST = 3,
|
|
GS_TRIANGLESTRIP = 4,
|
|
GS_TRIANGLEFAN = 5,
|
|
GS_SPRITE = 6,
|
|
GS_INVALID = 7,
|
|
}
|
|
}
|