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

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

?? p_spec.c

?? 魔法師傳奇源代碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
		case 29: // Build Pillar (no crushing)			buttonSuccess = EV_BuildPillar(line, args, false);			break;		case 30: // Open Pillar			buttonSuccess = EV_OpenPillar(line, args);			break;		case 31: // Stairs Build Down Sync			buttonSuccess = EV_BuildStairs(line, args, -1, STAIRS_SYNC);			break;		case 32: // Build Stairs Up Sync			buttonSuccess = EV_BuildStairs(line, args, 1, STAIRS_SYNC);			break;		case 35: // Raise Floor by Value Times 8			buttonSuccess = EV_DoFloor(line, args, FLEV_RAISEBYVALUETIMES8);			break;		case 36: // Lower Floor by Value Times 8			buttonSuccess = EV_DoFloor(line, args, FLEV_LOWERBYVALUETIMES8);			break;		case 40: // Ceiling Lower by Value			buttonSuccess = EV_DoCeiling(line, args, CLEV_LOWERBYVALUE);			break;		case 41: // Ceiling Raise by Value			buttonSuccess = EV_DoCeiling(line, args, CLEV_RAISEBYVALUE);			break;		case 42: // Ceiling Crush and Raise			buttonSuccess = EV_DoCeiling(line, args, CLEV_CRUSHANDRAISE);			break;		case 43: // Ceiling Lower and Crush			buttonSuccess = EV_DoCeiling(line, args, CLEV_LOWERANDCRUSH);			break;		case 44: // Ceiling Crush Stop			buttonSuccess = EV_CeilingCrushStop(line, args);			break;		case 45: // Ceiling Crush Raise and Stay			buttonSuccess = EV_DoCeiling(line, args, CLEV_CRUSHRAISEANDSTAY);			break;		case 46: // Floor Crush Stop			buttonSuccess = EV_FloorCrushStop(line, args);			break;		case 60: // Plat Perpetual Raise			buttonSuccess = EV_DoPlat(line, args, PLAT_PERPETUALRAISE, 0);			break;		case 61: // Plat Stop			EV_StopPlat(line, args);			break;		case 62: // Plat Down-Wait-Up-Stay			buttonSuccess = EV_DoPlat(line, args, PLAT_DOWNWAITUPSTAY, 0);			break;		case 63: // Plat Down-by-Value*8-Wait-Up-Stay			buttonSuccess = EV_DoPlat(line, args, PLAT_DOWNBYVALUEWAITUPSTAY,				0);			break;		case 64: // Plat Up-Wait-Down-Stay			buttonSuccess = EV_DoPlat(line, args, PLAT_UPWAITDOWNSTAY, 0);			break;		case 65: // Plat Up-by-Value*8-Wait-Down-Stay			buttonSuccess = EV_DoPlat(line, args, PLAT_UPBYVALUEWAITDOWNSTAY,				0);			break;		case 66: // Floor Lower Instant * 8			buttonSuccess = EV_DoFloor(line, args, FLEV_LOWERTIMES8INSTANT);			break;		case 67: // Floor Raise Instant * 8			buttonSuccess = EV_DoFloor(line, args, FLEV_RAISETIMES8INSTANT);			break;		case 68: // Floor Move to Value * 8			buttonSuccess = EV_DoFloor(line, args, FLEV_MOVETOVALUETIMES8);			break;		case 69: // Ceiling Move to Value * 8			buttonSuccess = EV_DoCeiling(line, args, CLEV_MOVETOVALUETIMES8);			break;		case 70: // Teleport			if(side == 0)			{ // Only teleport when crossing the front side of a line				buttonSuccess = EV_Teleport(args[0], mo, true);			}			break;		case 71: // Teleport, no fog			if(side == 0)			{ // Only teleport when crossing the front side of a line				buttonSuccess = EV_Teleport(args[0], mo, false);			}			break;		case 72: // Thrust Mobj			if(!side) // Only thrust on side 0			{				P_ThrustMobj(mo, args[0]*(ANGLE_90/64), args[1]<<FRACBITS);				buttonSuccess = 1;			}			break;		case 73: // Damage Mobj			if(args[0])			{				P_DamageMobj(mo, NULL, NULL, args[0]);			}			else			{ // If arg1 is zero, then guarantee a kill				P_DamageMobj(mo, NULL, NULL, 10000);			}			buttonSuccess = 1;			break;		case 74: // Teleport_NewMap			if(side == 0)			{ // Only teleport when crossing the front side of a line				if(!(mo && mo->player && mo->player->playerstate					== PST_DEAD)) // Players must be alive to teleport				{					G_Completed(args[0], args[1]);					buttonSuccess = true;				}			}			break;		case 75: // Teleport_EndGame			if(side == 0)			{ // Only teleport when crossing the front side of a line				if(!(mo && mo->player && mo->player->playerstate					== PST_DEAD)) // Players must be alive to teleport				{					buttonSuccess = true;					if(deathmatch)					{ // Winning in deathmatch just goes back to map 1						G_Completed(1, 0);					}					else					{ // Passing -1, -1 to G_Completed() starts the Finale						G_Completed(-1, -1);					}				}			}			break;		case 80: // ACS_Execute			buttonSuccess =				P_StartACS(args[0], args[1], &args[2], mo, line, side);			break;		case 81: // ACS_Suspend			buttonSuccess = P_SuspendACS(args[0], args[1]);			break;		case 82: // ACS_Terminate			buttonSuccess = P_TerminateACS(args[0], args[1]);			break;		case 83: // ACS_LockedExecute			buttonSuccess = P_StartLockedACS(line, args, mo, side);			break;		case 90: // Poly Rotate Left Override			buttonSuccess = EV_RotatePoly(line, args, 1, true);			break;		case 91: // Poly Rotate Right Override			buttonSuccess = EV_RotatePoly(line, args, -1, true);			break;		case 92: // Poly Move Override			buttonSuccess = EV_MovePoly(line, args, false, true);			break;		case 93: // Poly Move Times 8 Override			buttonSuccess = EV_MovePoly(line, args, true, true);			break;		case 94: // Build Pillar Crush 			buttonSuccess = EV_BuildPillar(line, args, true);			break;		case 95: // Lower Floor and Ceiling			buttonSuccess = EV_DoFloorAndCeiling(line, args, false);			break;		case 96: // Raise Floor and Ceiling			buttonSuccess = EV_DoFloorAndCeiling(line, args, true);			break;		case 109: // Force Lightning			buttonSuccess = true;			P_ForceLightning();			break;		case 110: // Light Raise by Value			buttonSuccess = EV_SpawnLight(line, args, LITE_RAISEBYVALUE);			break; 		case 111: // Light Lower by Value			buttonSuccess = EV_SpawnLight(line, args, LITE_LOWERBYVALUE);			break; 		case 112: // Light Change to Value			buttonSuccess = EV_SpawnLight(line, args, LITE_CHANGETOVALUE);			break; 		case 113: // Light Fade			buttonSuccess = EV_SpawnLight(line, args, LITE_FADE);			break; 		case 114: // Light Glow			buttonSuccess = EV_SpawnLight(line, args, LITE_GLOW);			break; 		case 115: // Light Flicker			buttonSuccess = EV_SpawnLight(line, args, LITE_FLICKER);			break; 		case 116: // Light Strobe			buttonSuccess = EV_SpawnLight(line, args, LITE_STROBE);			break; 		case 120: // Quake Tremor			buttonSuccess = A_LocalQuake(args, mo);			break;		case 129: // UsePuzzleItem			buttonSuccess = EV_LineSearchForPuzzleItem(line, args, mo);			break;		case 130: // Thing_Activate			buttonSuccess = EV_ThingActivate(args[0]);			break;		case 131: // Thing_Deactivate			buttonSuccess = EV_ThingDeactivate(args[0]);			break;		case 132: // Thing_Remove			buttonSuccess = EV_ThingRemove(args[0]);			break;		case 133: // Thing_Destroy			buttonSuccess = EV_ThingDestroy(args[0]);			break;		case 134: // Thing_Projectile			buttonSuccess = EV_ThingProjectile(args, 0);			break;		case 135: // Thing_Spawn			buttonSuccess = EV_ThingSpawn(args, 1);			break;		case 136: // Thing_ProjectileGravity			buttonSuccess = EV_ThingProjectile(args, 1);			break;		case 137: // Thing_SpawnNoFog			buttonSuccess = EV_ThingSpawn(args, 0);			break;		case 138: // Floor_Waggle			buttonSuccess = EV_StartFloorWaggle(args[0], args[1],				args[2], args[3], args[4]);			break;		case 140: // Sector_SoundChange			buttonSuccess = EV_SectorSoundChange(args);			break;		// Line specials only processed during level initialization		// 100: Scroll_Texture_Left		// 101: Scroll_Texture_Right		// 102: Scroll_Texture_Up		// 103: Scroll_Texture_Down		// 121: Line_SetIdentification		// Inert Line specials		default:			break;	}	return buttonSuccess;}//============================================================================//// P_ActivateLine////============================================================================boolean P_ActivateLine(line_t *line, mobj_t *mo, int side, int activationType){	int lineActivation;	boolean repeat;	boolean buttonSuccess;	lineActivation = GET_SPAC(line->flags);	if(lineActivation != activationType)	{		return false;	}	if(!mo->player && !(mo->flags&MF_MISSILE))	{		if(lineActivation != SPAC_MCROSS)		{ // currently, monsters can only activate the MCROSS activation type 			return false;		}		if(line->flags & ML_SECRET)			return false;           // never open secret doors	}	repeat = line->flags&ML_REPEAT_SPECIAL;	buttonSuccess = false;	buttonSuccess = P_ExecuteLineSpecial(line->special, &line->arg1, line,		side, mo);	if(!repeat && buttonSuccess)	{ // clear the special on non-retriggerable lines		line->special = 0;	}	if((lineActivation == SPAC_USE || lineActivation == SPAC_IMPACT) 		&& buttonSuccess)	{		P_ChangeSwitchTexture(line, repeat);	}	return true;}//----------------------------------------------------------------------------//// PROC P_PlayerInSpecialSector//// Called every tic frame that the player origin is in a special sector.////----------------------------------------------------------------------------void P_PlayerInSpecialSector(player_t *player){	sector_t *sector;	static int pushTab[3] =	{		2048*5,		2048*10,		2048*25	};	sector = player->mo->subsector->sector;	if(player->mo->z != sector->floorheight)	{ // Player is not touching the floor		return;	}	switch(sector->special)	{		case 9: // SecretArea			player->secretcount++;			sector->special = 0;			break;		case 201: case 202: case 203: // Scroll_North_xxx			P_Thrust(player, ANG90, pushTab[sector->special-201]);			break;		case 204: case 205: case 206: // Scroll_East_xxx			P_Thrust(player, 0, pushTab[sector->special-204]);			break;		case 207: case 208: case 209: // Scroll_South_xxx			P_Thrust(player, ANG270, pushTab[sector->special-207]);			break;		case 210: case 211: case 212: // Scroll_West_xxx			P_Thrust(player, ANG180, pushTab[sector->special-210]);			break;		case 213: case 214: case 215: // Scroll_NorthWest_xxx			P_Thrust(player, ANG90+ANG45, pushTab[sector->special-213]);			break;		case 216: case 217: case 218: // Scroll_NorthEast_xxx			P_Thrust(player, ANG45, pushTab[sector->special-216]);			break;		case 219: case 220: case 221: // Scroll_SouthEast_xxx			P_Thrust(player, ANG270+ANG45, pushTab[sector->special-219]);			break;		case 222: case 223: case 224: // Scroll_SouthWest_xxx			P_Thrust(player, ANG180+ANG45, pushTab[sector->special-222]);			break;		case 40: case 41: case 42: case 43: case 44: case 45:		case 46: case 47: case 48: case 49: case 50: case 51:			// Wind specials are handled in (P_mobj):P_XYMovement			break;		case 26: // Stairs_Special1		case 27: // Stairs_Special2			// Used in (P_floor):ProcessStairSector			break;		case 198: // Lightning Special		case 199: // Lightning Flash special		case 200: // Sky2			// Used in (R_plane):R_Drawplanes			break;		default:			I_Error("P_PlayerInSpecialSector: "				"unknown special %i", sector->special);	}}//============================================================================//// P_PlayerOnSpecialFlat////============================================================================void P_PlayerOnSpecialFlat(player_t *player, int floorType){	if(player->mo->z != player->mo->floorz)	{ // Player is not touching the floor		return;	}	switch(floorType)	{		case FLOOR_LAVA:			if(!(leveltime&31))			{				P_DamageMobj(player->mo, &LavaInflictor, NULL, 10);				S_StartSound(player->mo, SFX_LAVA_SIZZLE);			}			break;		default:			break;	}}//----------------------------------------------------------------------------//// PROC P_UpdateSpecials////----------------------------------------------------------------------------void P_UpdateSpecials(void){	int i;	// Handle buttons	for(i = 0; i < MAXBUTTONS; i++)	{		if(buttonlist[i].btimer)		{			buttonlist[i].btimer--;			if(!buttonlist[i].btimer)			{				switch(buttonlist[i].where)				{					case SWTCH_TOP:						sides[buttonlist[i].line->sidenum[0]].toptexture =							buttonlist[i].btexture;						break;					case SWTCH_MIDDLE:						sides[buttonlist[i].line->sidenum[0]].midtexture =							buttonlist[i].btexture;						break;					case SWTCH_BOTTOM:						sides[buttonlist[i].line->sidenum[0]].bottomtexture =							buttonlist[i].btexture;						break;				}				//S_StartSound((mobj_t *)&buttonlist[i].soundorg, sfx_switch);				memset(&buttonlist[i], 0, sizeof(button_t));			}		}	}}/*==============================================================================							SPECIAL SPAWNING==============================================================================*//*================================================================================= P_SpawnSpecials== After the map has been loaded, scan for specials that= spawn thinkers================================================================================*/short   numlinespecials;line_t  *linespeciallist[MAXLINEANIMS];void P_SpawnSpecials (void){	sector_t        *sector;	int             i;	//	//      Init special SECTORs	//	sector = sectors;	for (i=0 ; i<numsectors ; i++, sector++)	{		if (!sector->special)			continue;		switch (sector->special)		{			case 1: // Phased light				// Hardcoded base, use sector->lightlevel as the index				P_SpawnPhasedLight(sector, 80, -1);				break;			case 2: // Phased light sequence start				P_SpawnLightSequence(sector, 1);				break;			// Specials 3 & 4 are used by the phased light sequences			/*			case 1:         // FLICKERING LIGHTS				P_SpawnLightFlash (sector);				break;			case 2:         // STROBE FAST				P_SpawnStrobeFlash(sector,FASTDARK,0);				break;			case 3:         // STROBE SLOW				P_SpawnStrobeFlash(sector,SLOWDARK,0);				break;			case 4:         // STROBE FAST/DEATH SLIME				P_SpawnStrobeFlash(sector,FASTDARK,0);				sector->special = 4;				break;			case 8:         // GLOWING LIGHT				P_SpawnGlowingLight(sector);				break;			case 9:         // SECRET SECTOR				totalsecret++;				break;			case 10:        // DOOR CLOSE IN 30 SECONDS				P_SpawnDoorCloseIn30 (sector);				break;			case 12:        // SYNC STROBE SLOW				P_SpawnStrobeFlash (sector, SLOWDARK, 1);				break;			case 13:        // SYNC STROBE FAST				P_SpawnStrobeFlash (sector, FASTDARK, 1);				break;			case 14:        // DOOR RAISE IN 5 MINUTES				P_SpawnDoorRaiseIn5Mins (sector, i);				break;			*/		}	}	//	//      Init line EFFECTs	//	numlinespecials = 0;	TaggedLineCount = 0;	for(i = 0; i < numlines; i++)	{		switch(lines[i].special)		{			case 100: // Scroll_Texture_Left			case 101: // Scroll_Texture_Right			case 102: // Scroll_Texture_Up			case 103: // Scroll_Texture_Down				linespeciallist[numlinespecials] = &lines[i];				numlinespecials++;				break;			case 121: // Line_SetIdentification				if(lines[i].arg1)				{					if(TaggedLineCount == MAX_TAGGED_LINES)					{						I_Error("P_SpawnSpecials: MAX_TAGGED_LINES "							"(%d) exceeded.", MAX_TAGGED_LINES);					}					TaggedLines[TaggedLineCount].line = &lines[i];					TaggedLines[TaggedLineCount++].lineTag						= lines[i].arg1;				}				lines[i].special = 0;				break;		}	}	//	//      Init other misc stuff	//	for (i = 0;i < MAXCEILINGS;i++)		activeceilings[i] = NULL;	for (i = 0;i < MAXPLATS;i++)		activeplats[i] = NULL;	for (i = 0;i < MAXBUTTONS;i++)		memset(&buttonlist[i],0,sizeof(button_t));	// Initialize flat and texture animations	P_InitFTAnims();}//==========================================================================//// P_FindLine////==========================================================================line_t *P_FindLine(int lineTag, int *searchPosition){	int i;	for(i = *searchPosition+1; i < TaggedLineCount; i++)	{		if(TaggedLines[i].lineTag == lineTag)		{			*searchPosition = i;			return TaggedLines[i].line;		}	}	*searchPosition = -1;	return NULL;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产日韩在线一区模特 | 国产成人av在线影院| 国产乱码精品一品二品| 国产成人日日夜夜| 91网页版在线| 日韩一区二区免费高清| 亚洲视频免费观看| 蜜桃av一区二区三区| 成人听书哪个软件好| 欧美日韩国产综合一区二区三区 | 日韩美女在线视频| 国产精品乱码久久久久久| 亚洲二区在线观看| 国产v综合v亚洲欧| 欧美日韩黄色一区二区| 欧美一区二区三区影视| 亚洲线精品一区二区三区八戒| 久久99热国产| 欧美日韩你懂得| 国产精品私人自拍| 久久超碰97中文字幕| 成人性生交大合| 欧美大片拔萝卜| 亚洲精品国久久99热| 成人性生交大片免费看中文网站| 欧美精品一区二区三区在线| 亚洲成国产人片在线观看| 国产91精品一区二区麻豆网站| 欧美群妇大交群的观看方式| 日韩一区二区三区电影在线观看 | 国产乱妇无码大片在线观看| 欧美亚洲国产一区在线观看网站| 中文字幕 久热精品 视频在线| 性做久久久久久免费观看| 日本欧洲一区二区| 欧美精品一卡二卡| 亚洲一区二区三区美女| 风流少妇一区二区| 久久精品亚洲国产奇米99| 国产馆精品极品| 26uuu色噜噜精品一区| 蜜臀av性久久久久蜜臀aⅴ四虎| 欧美日韩国产小视频在线观看| 亚洲色图欧美偷拍| 99国产精品国产精品毛片| 亚洲激情五月婷婷| 91影视在线播放| 亚洲视频一区二区免费在线观看| 国产sm精品调教视频网站| 91麻豆精品国产自产在线| 久久99日本精品| 日韩欧美一二区| 免费三级欧美电影| 日韩三级视频中文字幕| 青椒成人免费视频| 日本一区二区三区在线不卡| 成人性生交大片免费看在线播放| 国产三级精品三级| 成人黄色a**站在线观看| 国产精品伦一区二区三级视频| 色网综合在线观看| 亚洲18女电影在线观看| 7777精品伊人久久久大香线蕉超级流畅 | 91精品国产欧美一区二区成人| 成人中文字幕在线| 中文字幕日韩欧美一区二区三区| 成人黄页毛片网站| 国产亚洲一区二区三区| 成人免费视频caoporn| 国产精品久久久久影院亚瑟| 色94色欧美sute亚洲线路二 | 另类调教123区| 久久久精品欧美丰满| 免费在线看成人av| 亚洲欧美日韩久久精品| 欧美日韩国产区一| 国产麻豆午夜三级精品| 亚洲欧美在线另类| 91久久国产综合久久| 美女脱光内衣内裤视频久久网站| 2欧美一区二区三区在线观看视频| 国产成人在线视频网站| 亚洲美腿欧美偷拍| 欧美一二三区在线| 一本一本大道香蕉久在线精品| 久久爱www久久做| 亚洲h动漫在线| 国产精品你懂的在线欣赏| 欧美一级免费观看| 在线精品亚洲一区二区不卡| 成人午夜视频在线| 韩国在线一区二区| 日韩av电影一区| 亚洲伦在线观看| 欧美极品aⅴ影院| 精品少妇一区二区三区日产乱码 | wwwwww.欧美系列| 91精品国产麻豆| 欧美日韩亚洲另类| 在线影院国内精品| www.色综合.com| 成人一区在线看| 国产成人亚洲综合a∨猫咪| 久久er99热精品一区二区| 免费成人美女在线观看| 日韩影院在线观看| 日韩高清不卡一区二区三区| 亚洲综合在线第一页| 亚洲黄色录像片| 一区二区三区日韩精品| 综合自拍亚洲综合图不卡区| 亚洲欧洲性图库| 亚洲欧美自拍偷拍色图| 亚洲欧美日韩国产成人精品影院| 中文字幕av一区 二区| 日韩一区有码在线| 亚洲免费观看高清| 亚洲成av人片在线| 免费久久99精品国产| 黄色精品一二区| 国产suv精品一区二区6| eeuss鲁一区二区三区| 91麻豆免费观看| 日本黄色一区二区| 欧美日韩高清不卡| 日韩区在线观看| 久久久不卡网国产精品一区| 麻豆精品新av中文字幕| 国产一区二区三区视频在线播放| 国产精品 日产精品 欧美精品| 高清日韩电视剧大全免费| 99久久久免费精品国产一区二区| 日本黄色一区二区| 欧美一区二区日韩一区二区| 欧美zozo另类异族| 国产精品无码永久免费888| 伊人夜夜躁av伊人久久| 日韩成人dvd| 国产成人精品免费网站| 色综合久久天天综合网| 51精品国自产在线| 亚洲国产成人私人影院tom| 国产精品初高中害羞小美女文| 一区二区三区四区av| 奇米影视在线99精品| 成人app网站| 91精品国产91热久久久做人人| 久久久国产精品午夜一区ai换脸| 亚洲视频 欧洲视频| 美女一区二区在线观看| 99在线精品免费| 欧美α欧美αv大片| 亚洲免费av高清| 极品少妇xxxx偷拍精品少妇| 99久久综合99久久综合网站| 欧美福利视频导航| 亚洲视频免费看| 国精产品一区一区三区mba桃花 | 亚洲精品高清在线| 精品一区二区日韩| 日本乱人伦一区| 久久久精品人体av艺术| 亚洲动漫第一页| 成人性生交大片免费看在线播放| 在线电影一区二区三区| 亚洲精品中文字幕在线观看| 国产美女娇喘av呻吟久久| 欧美日韩精品电影| 亚洲三级电影全部在线观看高清| 久久91精品国产91久久小草| 欧美色国产精品| 成人欧美一区二区三区小说| 国产精品羞羞答答xxdd| 日韩欧美高清dvd碟片| 亚洲一区二区三区四区五区黄| 不卡一卡二卡三乱码免费网站 | 欧美日韩色综合| 日韩一区中文字幕| 国产精品香蕉一区二区三区| 欧美刺激午夜性久久久久久久| 亚洲成人动漫在线观看| 91亚洲永久精品| 国产精品国产三级国产aⅴ入口 | 一区二区三区欧美亚洲| av亚洲精华国产精华精| 国产清纯白嫩初高生在线观看91| 精品亚洲国内自在自线福利| 欧美一级黄色大片| 日韩高清欧美激情| 在线电影院国产精品| 午夜精品久久久久久久久| 欧美艳星brazzers| 亚洲一区视频在线| 欧美亚洲日本一区| 五月综合激情日本mⅴ| 欧美日本国产一区| 午夜成人在线视频| 91麻豆精品国产91| 色综合久久中文字幕综合网| 亚洲视频精选在线|