Portable Half-Life SDK. GoldSource and Xash3D. Crossplatform.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

144 lines
3.0 KiB

/***
*
* Copyright (c) 1996-2002, Valve LLC. All rights reserved.
*
* This product contains software technology licensed from Id
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
* All Rights Reserved.
*
* Use, distribution, and modification of this source code and/or resulting
* object code is restricted to non-commercial enhancements to products from
* Valve LLC. All other use, distribution, or modification is prohibited
* without written permission from Valve LLC.
*
****/
//
// flashlight.cpp
//
// implementation of CHudFlashlight class
//
#include "hud.h"
#include "cl_util.h"
#include "parsemsg.h"
#include <string.h>
#include <stdio.h>
DECLARE_MESSAGE( m_Nightvision, Nightvision )
DECLARE_MESSAGE( m_Nightvision, Flashlight )
#define NIGHTVISION_SPRITE1_NAME "sprites/of_nv.spr"
#define NIGHTVISION_SPRITE2_NAME "sprites/of_nv_a.spr"
#define NIGHTVISION_SPRITE3_NAME "sprites/of_nv_b.spr"
#define NIGHTVISION_SPRITE4_NAME "sprites/of_nv_int.spr"
int CHudNightvision::Init(void)
{
m_fOn = 0;
HOOK_MESSAGE(Nightvision);
HOOK_MESSAGE(Flashlight);
m_iFlags |= HUD_ACTIVE;
gHUD.AddHudElem(this);
return 1;
};
void CHudNightvision::Reset(void)
{
m_fOn = 0;
}
int CHudNightvision::VidInit(void)
{
m_hSprite1 = LoadSprite(NIGHTVISION_SPRITE1_NAME);
m_hSprite2 = LoadSprite(NIGHTVISION_SPRITE2_NAME);
m_hSprite3 = LoadSprite(NIGHTVISION_SPRITE3_NAME);
m_hSprite4 = LoadSprite(NIGHTVISION_SPRITE4_NAME);
m_prc = &gHUD.GetSpriteRect(m_hSprite2);
// Get the number of frames available in this sprite.
m_nFrameCount = SPR_Frames(m_hSprite2);
// current frame.
m_iFrame = 0;
return 1;
};
int CHudNightvision::MsgFunc_Nightvision(const char *pszName, int iSize, void *pbuf)
{
BEGIN_READ(pbuf, iSize);
m_fOn = READ_BYTE();
return 1;
}
int CHudNightvision::MsgFunc_Flashlight( const char *pszName, int iSize, void *pbuf )
{
BEGIN_READ( pbuf, iSize );
m_fOn = READ_BYTE();
return 1;
}
int CHudNightvision::Draw(float flTime)
{
if (gHUD.m_iHideHUDDisplay & (HIDEHUD_FLASHLIGHT | HIDEHUD_ALL))
return 1;
int r, g, b, x, y, a;
// Only display this if the player is equipped with the suit.
if (!(gHUD.m_iWeaponBits & (1 << (WEAPON_SUIT))))
return 1;
if (m_fOn)
a = 225;
else
a = MIN_ALPHA;
// Get each color component from the main
// hud color.
UnpackRGB(r, g, b, RGB_YELLOWISH);
ScaleColors(r, g, b, a);
// Top left of the screen.
x = y = 0;
// Reset the number of frame if we are at last frame.
if (m_iFrame >= m_nFrameCount)
m_iFrame = 0;
if (m_fOn)
{
//
// draw nightvision scanlines sprite.
//
SPR_Set(m_hSprite2, r, g, b);
int i, j;
for (i = 0; i < 8; ++i) // height
{
for (j = 0; j < 16; ++j) // width
{
// Nightvision sprites are 256 x 256. So draw 128 -> (8 * 16) instances to cover
// the entire screen. It's cheap but does the work.
//
// Keep in mind this is used until we find a better solution.
SPR_DrawAdditive(m_iFrame, x + (j * 256), y + (i * 256), NULL);
}
}
}
// Increase sprite frame.
m_iFrame++;
return 1;
}