⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mlrclippingstate.hpp

📁 机甲指挥官2源代码
💻 HPP
字号:
//===========================================================================//
// Copyright (C) Microsoft Corporation. All rights reserved.                 //
//===========================================================================//

#pragma once
#define MLR_MLRCLIPPINGSTATE_HPP

#if !defined(MLR_MLR_HPP)
	#include <MLR\MLR.hpp>
#endif

namespace MidLevelRenderer {

	//##########################################################################
	//####################    MLRClippingState    ##############################
	//##########################################################################

	class MLRClippingState
	{
	protected:
		int
			clippingState;

	public:
		MLRClippingState()
			{ clippingState = 0; };
		MLRClippingState(int i)
			{ clippingState = i; };
		MLRClippingState(const MLRClippingState& state)
			{ clippingState = state.clippingState;}

	//##########################################################################
	//	Attention !!! when changing the flags also change them in
	//	Stuff::Vector4D::MultiplySetClip the assembler block
	//	
	//##########################################################################
		enum {
			TopClipBit = 0,
			BottomClipBit,
			LeftClipBit,
			RightClipBit,
			NearClipBit,
			FarClipBit,
			NextBit
		};

		enum {
			TopClipFlag = 1<<TopClipBit,
			BottomClipFlag = 1<<BottomClipBit,
			LeftClipFlag = 1<<LeftClipBit,
			RightClipFlag = 1<<RightClipBit,
			NearClipFlag = 1<<NearClipBit,
			FarClipFlag = 1<<FarClipBit,
			ClipMask =
				TopClipFlag | BottomClipFlag | LeftClipFlag
				 | RightClipFlag | NearClipFlag | FarClipFlag
		};

		bool
			IsFarClipped()
				{Check_Pointer(this); return (clippingState&FarClipFlag) != 0;}
		void
			SetFarClip()
				{Check_Pointer(this); clippingState |= FarClipFlag;}
		void
			ClearFarClip()
				{Check_Pointer(this); clippingState &= ~FarClipFlag;}

		bool
			IsNearClipped()
				{Check_Pointer(this); return (clippingState&NearClipFlag) != 0;}
		void
			SetNearClip()
				{Check_Pointer(this); clippingState |= NearClipFlag;}
		void
			ClearNearClip()
				{Check_Pointer(this); clippingState &= ~NearClipFlag;}

		bool
			IsTopClipped()
				{Check_Pointer(this); return clippingState&TopClipFlag;}
		void
			SetTopClip()
				{Check_Pointer(this); clippingState |= TopClipFlag;}
		void
			ClearTopClip()
				{Check_Pointer(this); clippingState &= ~TopClipFlag;}

		bool
			IsBottomClipped()
				{Check_Pointer(this); return (clippingState&BottomClipFlag) != 0;}
		void
			SetBottomClip()
				{Check_Pointer(this); clippingState |= BottomClipFlag;}
		void
			ClearBottomClip()
				{Check_Pointer(this); clippingState &= ~BottomClipFlag;}

		bool
			IsLeftClipped()
				{Check_Pointer(this); return (clippingState&LeftClipFlag) != 0;}
		void
			SetLeftClip()
				{Check_Pointer(this); clippingState |= LeftClipFlag;}
		void
			ClearLeftClip()
				{Check_Pointer(this); clippingState &= ~LeftClipFlag;}

		bool
			IsRightClipped()
				{Check_Pointer(this); return (clippingState&RightClipFlag) != 0;}
		void
			SetRightClip()
				{Check_Pointer(this); clippingState |= RightClipFlag;}
		void
			ClearRightClip()
				{Check_Pointer(this); clippingState &= ~RightClipFlag;}

		void
			SetClip(int mask, int flag)
		{
			Check_Pointer(this); 
#if USE_ASSEMBLER_CODE
			_asm {
				xor		ecx, ecx

				mov		ebx, mask

				test	ebx, 0ffffffffh

				seta	cl

				xor		eax, eax
				sub		eax, ecx

				and		flag, eax
			}
			clippingState |= flag;
#else
			if(mask != 0)
			{
				clippingState |= flag;
			}
#endif
		}

		bool
			IsClipped(int mask)
				{Check_Pointer(this); return (clippingState & mask) != 0;}

		int
			GetClippingState()
				{Check_Pointer(this); return (clippingState & ClipMask);}
		void
			SetClippingState(int state)
				{Check_Pointer(this); clippingState = state & ClipMask;}

		int
			GetNumberOfSetBits()
				{Check_Pointer(this); Verify(clippingState<=ClipMask);
				return numberBitsLookUpTable[clippingState]; }

	//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	// Assignment operators
	//
	public:
		MLRClippingState&
			operator=(const MLRClippingState &s)
				{
					Check_Pointer(this);
					clippingState = s.clippingState;
					return *this;
				}

		MLRClippingState&
			operator&=(const MLRClippingState &s)
				{
					Check_Pointer(this);
					clippingState &= s.clippingState;
					return *this;
				}

		MLRClippingState&
			operator|=(const MLRClippingState &s)
				{
					Check_Pointer(this);
					clippingState |= s.clippingState;
					return *this;
				}

		bool
			operator==(const MLRClippingState &s)
				{
					Check_Pointer(this);
					return (clippingState == s.clippingState);
				}

		bool
			operator==(const int &s)
				{
					Check_Pointer(this);
					return (clippingState == s);
				}

		bool
			operator!=(const MLRClippingState &s)
				{
					Check_Pointer(this);
					return (clippingState != s.clippingState);
				}

		bool
			operator!=(const int &s)
				{
					Check_Pointer(this);
					return (clippingState != s);
				}

		void
			Save(Stuff::MemoryStream *stream);
		void
			Load(Stuff::MemoryStream *stream);

		inline void
			Clip4dVertex(Stuff::Vector4D *v4d);

	//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	// Testing
	//
	public:
		void
			TestInstance()
				{}
	private:
		static int numberBitsLookUpTable[ClipMask+1];
	};

	inline void
		MLRClippingState::Clip4dVertex(Stuff::Vector4D *v4d)
	{
#if USE_ASSEMBLER_CODE

		int _ret = 0;

		_asm {
			mov		edi, v4d

			xor		ecx,ecx
			xor		edx, edx
			test	dword ptr [edi], 080000000h
			setne	cl
			sub		edx, ecx
			and		edx, 8	// RightClipFlag

			xor		ebx, ebx
			test	dword ptr [edi+4], 080000000h
			setne	cl
			sub		ebx, ecx
			and		ebx, 2	// BottomClipFlag

			or		edx, ebx

			xor		ebx, ebx
			test	dword ptr [edi+8], 080000000h
			setne	cl
			sub		ebx, ecx
			and		ebx, 16	// NearClipFlag

			or		edx, ebx

			fld		dword ptr [edi+0Ch]

			xor		ebx, ebx
			fcom	dword ptr [edi]
			fnstsw	ax
			test	ah, 1
			setne	cl
			sub		ebx, ecx
			and		ebx, 4	// LeftClipFlag

			or		edx, ebx

			xor		ebx, ebx
			fcom	dword ptr [edi+4]
			fnstsw	ax
			test	ah, 1
			setne	cl
			sub		ebx, ecx
			and		ebx, 1	// TopClipFlag

			or		edx, ebx

			xor		ebx, ebx
			fcomp	dword ptr [edi+8]
			fnstsw	ax
			test	ah, 41h
			setne	cl
			sub		ebx, ecx
			and		ebx, 32	// FarClipFlag

			or		edx, ebx

			mov		_ret, edx
		}
		
		clippingState = _ret;
#else
		clippingState = 0;

		if(v4d->w <= v4d->z)
		{
			SetFarClip();
		}

		if(v4d->z < 0.0f)
		{
			SetNearClip();
		}

		if(v4d->x < 0.0f)
		{
			SetRightClip();
		}

		if(v4d->w < v4d->x)
		{
			SetLeftClip();
		}

		if(v4d->y < 0.0f)
		{
			SetBottomClip();
		}

		if(v4d->w < v4d->y)
		{
			SetTopClip();
		}
#endif
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -