mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-22 17:19:15 +01:00
implemented CRubbish
This commit is contained in:
parent
1207c2ce6f
commit
51512db006
13
README.md
13
README.md
@ -40,12 +40,8 @@ to reverse at the time, calling the original functions is acceptable.
|
|||||||
```
|
```
|
||||||
cAudioManager - WIP
|
cAudioManager - WIP
|
||||||
CBoat
|
CBoat
|
||||||
CBrightLights
|
|
||||||
CBulletInfo
|
CBulletInfo
|
||||||
CCullZone - only mobile stuff
|
|
||||||
CCullZones - only mobile stuff
|
|
||||||
CExplosion
|
CExplosion
|
||||||
CFileLoader - almost done
|
|
||||||
CMenuManager - WIP
|
CMenuManager - WIP
|
||||||
CMotionBlurStreaks
|
CMotionBlurStreaks
|
||||||
CObject
|
CObject
|
||||||
@ -56,7 +52,6 @@ CPools - save/loading
|
|||||||
CRecordDataForChase
|
CRecordDataForChase
|
||||||
CRecordDataForGame
|
CRecordDataForGame
|
||||||
CRoadBlocks
|
CRoadBlocks
|
||||||
CSceneEdit
|
|
||||||
CSkidmarks
|
CSkidmarks
|
||||||
CSpecialFX
|
CSpecialFX
|
||||||
CStats
|
CStats
|
||||||
@ -67,6 +62,14 @@ CWorld
|
|||||||
GenericLoad
|
GenericLoad
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The following classes have only unused or practically unused code left:
|
||||||
|
```
|
||||||
|
CCullZone - only mobile stuff
|
||||||
|
CCullZones - only mobile stuff
|
||||||
|
CFileLoader - almost done
|
||||||
|
CSceneEdit
|
||||||
|
```
|
||||||
|
|
||||||
### Coding style
|
### Coding style
|
||||||
|
|
||||||
I started writing in [Plan 9 style](http://man.cat-v.org/plan_9/6/style),
|
I started writing in [Plan 9 style](http://man.cat-v.org/plan_9/6/style),
|
||||||
|
@ -73,6 +73,7 @@ enum Config {
|
|||||||
NUMCORONAS = 56,
|
NUMCORONAS = 56,
|
||||||
NUMPOINTLIGHTS = 32,
|
NUMPOINTLIGHTS = 32,
|
||||||
NUM3DMARKERS = 32,
|
NUM3DMARKERS = 32,
|
||||||
|
NUMBRIGHTLIGHTS = 32,
|
||||||
NUMSHINYTEXTS = 32,
|
NUMSHINYTEXTS = 32,
|
||||||
NUMMONEYMESSAGES = 16,
|
NUMMONEYMESSAGES = 16,
|
||||||
NUMPICKUPMESSAGES = 16,
|
NUMPICKUPMESSAGES = 16,
|
||||||
|
@ -117,8 +117,6 @@ void CBulletTrace::Update(void)
|
|||||||
m_framesInUse++;
|
m_framesInUse++;
|
||||||
}
|
}
|
||||||
|
|
||||||
WRAPPER void CBrightLights::RegisterOne(CVector pos, CVector up, CVector right, CVector fwd, uint8 type, uint8 unk1, uint8 unk2, uint8 unk3) { EAXJMP(0x51A410); }
|
|
||||||
|
|
||||||
RpAtomic *
|
RpAtomic *
|
||||||
MarkerAtomicCB(RpAtomic *atomic, void *data)
|
MarkerAtomicCB(RpAtomic *atomic, void *data)
|
||||||
{
|
{
|
||||||
@ -405,6 +403,234 @@ C3dMarkers::Update()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#define BRIGHTLIGHTS_MAX_DIST (60.0f) // invisible beyond this
|
||||||
|
#define BRIGHTLIGHTS_FADE_DIST (45.0f) // strongest between these two
|
||||||
|
#define CARLIGHTS_MAX_DIST (30.0f)
|
||||||
|
#define CARLIGHTS_FADE_DIST (15.0f) // 31 for close lights
|
||||||
|
|
||||||
|
int CBrightLights::NumBrightLights;
|
||||||
|
CBrightLight CBrightLights::aBrightLights[NUMBRIGHTLIGHTS];
|
||||||
|
|
||||||
|
void
|
||||||
|
CBrightLights::Init(void)
|
||||||
|
{
|
||||||
|
NumBrightLights = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
CBrightLights::RegisterOne(CVector pos, CVector up, CVector side, CVector front,
|
||||||
|
uint8 type, uint8 red, uint8 green, uint8 blue)
|
||||||
|
{
|
||||||
|
if(NumBrightLights >= NUMBRIGHTLIGHTS)
|
||||||
|
return;
|
||||||
|
|
||||||
|
aBrightLights[NumBrightLights].m_camDist = (pos - TheCamera.GetPosition()).Magnitude();
|
||||||
|
if(aBrightLights[NumBrightLights].m_camDist > BRIGHTLIGHTS_MAX_DIST)
|
||||||
|
return;
|
||||||
|
|
||||||
|
aBrightLights[NumBrightLights].m_pos = pos;
|
||||||
|
aBrightLights[NumBrightLights].m_up = up;
|
||||||
|
aBrightLights[NumBrightLights].m_side = side;
|
||||||
|
aBrightLights[NumBrightLights].m_front = front;
|
||||||
|
aBrightLights[NumBrightLights].m_type = type;
|
||||||
|
aBrightLights[NumBrightLights].m_red = red;
|
||||||
|
aBrightLights[NumBrightLights].m_green = green;
|
||||||
|
aBrightLights[NumBrightLights].m_blue = blue;
|
||||||
|
|
||||||
|
NumBrightLights++;
|
||||||
|
}
|
||||||
|
|
||||||
|
static float TrafficLightsSide[6] = { -0.09f, 0.09f, 0.162f, 0.09f, -0.09f, -0.162f };
|
||||||
|
static float TrafficLightsUp[6] = { 0.162f, 0.162f, 0.0f, -0.162f, -0.162f, 0.0f };
|
||||||
|
static float LongCarHeadLightsSide[8] = { -0.2f, 0.2f, -0.2f, 0.2f, -0.2f, 0.2f, -0.2f, 0.2f };
|
||||||
|
static float LongCarHeadLightsFront[8] = { 0.1f, 0.1f, -0.1f, -0.1f, 0.1f, 0.1f, -0.1f, -0.1f };
|
||||||
|
static float LongCarHeadLightsUp[8] = { 0.1f, 0.1f, 0.1f, 0.1f, -0.1f, -0.1f, -0.1f, -0.1f };
|
||||||
|
static float SmallCarHeadLightsSide[8] = { -0.08f, 0.08f, -0.08f, 0.08f, -0.08f, 0.08f, -0.08f, 0.08f };
|
||||||
|
static float SmallCarHeadLightsFront[8] = { 0.08f, 0.08f, -0.08f, -0.08f, 0.08f, 0.08f, -0.08f, -0.08f };
|
||||||
|
static float SmallCarHeadLightsUp[8] = { 0.08f, 0.08f, 0.08f, 0.08f, -0.08f, -0.08f, -0.08f, -0.08f };
|
||||||
|
static float BigCarHeadLightsSide[8] = { -0.15f, 0.15f, -0.15f, 0.15f, -0.15f, 0.15f, -0.15f, 0.15f };
|
||||||
|
static float BigCarHeadLightsFront[8] = { 0.15f, 0.15f, -0.15f, -0.15f, 0.15f, 0.15f, -0.15f, -0.15f };
|
||||||
|
static float BigCarHeadLightsUp[8] = { 0.15f, 0.15f, 0.15f, 0.15f, -0.15f, -0.15f, -0.15f, -0.15f };
|
||||||
|
static float TallCarHeadLightsSide[8] = { -0.08f, 0.08f, -0.08f, 0.08f, -0.08f, 0.08f, -0.08f, 0.08f };
|
||||||
|
static float TallCarHeadLightsFront[8] = { 0.08f, 0.08f, -0.08f, -0.08f, 0.08f, 0.08f, -0.08f, -0.08f };
|
||||||
|
static float TallCarHeadLightsUp[8] = { 0.2f, 0.2f, 0.2f, 0.2f, -0.2f, -0.2f, -0.2f, -0.2f };
|
||||||
|
static float SirenLightsSide[6] = { -0.04f, 0.04f, 0.06f, 0.04f, -0.04f, -0.06f };
|
||||||
|
static float SirenLightsUp[6] = { 0.06f, 0.06f, 0.0f, -0.06f, -0.06f, 0.0f };
|
||||||
|
static RwImVertexIndex TrafficLightIndices[4*3] = { 0, 1, 5, 1, 2, 3, 1, 3, 4, 1, 4, 5 };
|
||||||
|
static RwImVertexIndex CubeIndices[12*3] = {
|
||||||
|
0, 2, 1, 1, 2, 3, 3, 5, 1, 3, 7, 5,
|
||||||
|
2, 7, 3, 2, 6, 7, 4, 0, 1, 4, 1, 5,
|
||||||
|
6, 0, 4, 6, 2, 0, 6, 5, 7, 6, 4, 5
|
||||||
|
};
|
||||||
|
|
||||||
|
void
|
||||||
|
CBrightLights::Render(void)
|
||||||
|
{
|
||||||
|
int i, j;
|
||||||
|
CVector pos;
|
||||||
|
|
||||||
|
if(NumBrightLights == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
RwRenderStateSet(rwRENDERSTATEVERTEXALPHAENABLE, (void*)TRUE);
|
||||||
|
RwRenderStateSet(rwRENDERSTATEZWRITEENABLE, (void*)TRUE);
|
||||||
|
RwRenderStateSet(rwRENDERSTATESRCBLEND, (void*)rwBLENDSRCALPHA);
|
||||||
|
RwRenderStateSet(rwRENDERSTATEDESTBLEND, (void*)rwBLENDINVSRCALPHA);
|
||||||
|
RwRenderStateSet(rwRENDERSTATETEXTURERASTER, nil);
|
||||||
|
|
||||||
|
for(i = 0; i < NumBrightLights; i++){
|
||||||
|
if(TempBufferIndicesStored > TEMPBUFFERINDEXSIZE-40 || TempBufferVerticesStored > TEMPBUFFERVERTSIZE-40)
|
||||||
|
RenderOutGeometryBuffer();
|
||||||
|
|
||||||
|
int r, g, b, a;
|
||||||
|
float flicker = (CGeneral::GetRandomNumber()&0xFF) * 0.2f;
|
||||||
|
switch(aBrightLights[i].m_type){
|
||||||
|
case BRIGHTLIGHT_TRAFFIC_GREEN:
|
||||||
|
r = flicker; g = 255; b = flicker;
|
||||||
|
break;
|
||||||
|
case BRIGHTLIGHT_TRAFFIC_YELLOW:
|
||||||
|
r = 255; g = 128; b = flicker;
|
||||||
|
break;
|
||||||
|
case BRIGHTLIGHT_TRAFFIC_RED:
|
||||||
|
r = 255; g = flicker; b = flicker;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case BRIGHTLIGHT_FRONT_LONG:
|
||||||
|
case BRIGHTLIGHT_FRONT_SMALL:
|
||||||
|
case BRIGHTLIGHT_FRONT_BIG:
|
||||||
|
case BRIGHTLIGHT_FRONT_TALL:
|
||||||
|
r = 255; g = 255; b = 255;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case BRIGHTLIGHT_REAR_LONG:
|
||||||
|
case BRIGHTLIGHT_REAR_SMALL:
|
||||||
|
case BRIGHTLIGHT_REAR_BIG:
|
||||||
|
case BRIGHTLIGHT_REAR_TALL:
|
||||||
|
r = 255; g = flicker; b = flicker;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case BRIGHTLIGHT_SIREN:
|
||||||
|
r = aBrightLights[i].m_red;
|
||||||
|
g = aBrightLights[i].m_green;
|
||||||
|
b = aBrightLights[i].m_blue;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(aBrightLights[i].m_camDist < BRIGHTLIGHTS_FADE_DIST)
|
||||||
|
a = 255;
|
||||||
|
else
|
||||||
|
a = 255*(1.0f - (aBrightLights[i].m_camDist-BRIGHTLIGHTS_FADE_DIST)/(BRIGHTLIGHTS_MAX_DIST-BRIGHTLIGHTS_FADE_DIST));
|
||||||
|
// fade car lights down to 31 as they come near
|
||||||
|
if(aBrightLights[i].m_type >= BRIGHTLIGHT_FRONT_LONG && aBrightLights[i].m_type <= BRIGHTLIGHT_REAR_TALL){
|
||||||
|
if(aBrightLights[i].m_camDist < CARLIGHTS_FADE_DIST)
|
||||||
|
a = 31;
|
||||||
|
else if(aBrightLights[i].m_camDist < CARLIGHTS_MAX_DIST)
|
||||||
|
a = 31 + (255-31)*((aBrightLights[i].m_camDist-CARLIGHTS_FADE_DIST)/(CARLIGHTS_MAX_DIST-CARLIGHTS_FADE_DIST));
|
||||||
|
}
|
||||||
|
|
||||||
|
switch(aBrightLights[i].m_type){
|
||||||
|
case BRIGHTLIGHT_TRAFFIC_GREEN:
|
||||||
|
case BRIGHTLIGHT_TRAFFIC_YELLOW:
|
||||||
|
case BRIGHTLIGHT_TRAFFIC_RED:
|
||||||
|
for(j = 0; j < 6; j++){
|
||||||
|
pos = TrafficLightsSide[j]*aBrightLights[i].m_side +
|
||||||
|
TrafficLightsUp[j]*aBrightLights[i].m_up +
|
||||||
|
aBrightLights[i].m_pos;
|
||||||
|
RwIm3DVertexSetRGBA(&TempBufferRenderVertices[TempBufferVerticesStored+j], r, g, b, a);
|
||||||
|
RwIm3DVertexSetPos(&TempBufferRenderVertices[TempBufferVerticesStored+j], pos.x, pos.y, pos.z);
|
||||||
|
}
|
||||||
|
for(j = 0; j < 4*3; j++)
|
||||||
|
TempBufferRenderIndexList[TempBufferIndicesStored+j] = TrafficLightIndices[j] + TempBufferVerticesStored;
|
||||||
|
TempBufferVerticesStored += 6;
|
||||||
|
TempBufferIndicesStored += 4*3;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case BRIGHTLIGHT_FRONT_LONG:
|
||||||
|
case BRIGHTLIGHT_REAR_LONG:
|
||||||
|
for(j = 0; j < 8; j++){
|
||||||
|
pos = LongCarHeadLightsSide[j]*aBrightLights[i].m_side +
|
||||||
|
LongCarHeadLightsUp[j]*aBrightLights[i].m_up +
|
||||||
|
LongCarHeadLightsFront[j]*aBrightLights[i].m_front +
|
||||||
|
aBrightLights[i].m_pos;
|
||||||
|
RwIm3DVertexSetRGBA(&TempBufferRenderVertices[TempBufferVerticesStored+j], r, g, b, a);
|
||||||
|
RwIm3DVertexSetPos(&TempBufferRenderVertices[TempBufferVerticesStored+j], pos.x, pos.y, pos.z);
|
||||||
|
}
|
||||||
|
for(j = 0; j < 12*3; j++)
|
||||||
|
TempBufferRenderIndexList[TempBufferIndicesStored+j] = CubeIndices[j] + TempBufferVerticesStored;
|
||||||
|
TempBufferVerticesStored += 8;
|
||||||
|
TempBufferIndicesStored += 12*3;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case BRIGHTLIGHT_FRONT_SMALL:
|
||||||
|
case BRIGHTLIGHT_REAR_SMALL:
|
||||||
|
for(j = 0; j < 8; j++){
|
||||||
|
pos = SmallCarHeadLightsSide[j]*aBrightLights[i].m_side +
|
||||||
|
SmallCarHeadLightsUp[j]*aBrightLights[i].m_up +
|
||||||
|
SmallCarHeadLightsFront[j]*aBrightLights[i].m_front +
|
||||||
|
aBrightLights[i].m_pos;
|
||||||
|
RwIm3DVertexSetRGBA(&TempBufferRenderVertices[TempBufferVerticesStored+j], r, g, b, a);
|
||||||
|
RwIm3DVertexSetPos(&TempBufferRenderVertices[TempBufferVerticesStored+j], pos.x, pos.y, pos.z);
|
||||||
|
}
|
||||||
|
for(j = 0; j < 12*3; j++)
|
||||||
|
TempBufferRenderIndexList[TempBufferIndicesStored+j] = CubeIndices[j] + TempBufferVerticesStored;
|
||||||
|
TempBufferVerticesStored += 8;
|
||||||
|
TempBufferIndicesStored += 12*3;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case BRIGHTLIGHT_FRONT_TALL:
|
||||||
|
case BRIGHTLIGHT_REAR_TALL:
|
||||||
|
for(j = 0; j < 8; j++){
|
||||||
|
pos = TallCarHeadLightsSide[j]*aBrightLights[i].m_side +
|
||||||
|
TallCarHeadLightsUp[j]*aBrightLights[i].m_up +
|
||||||
|
TallCarHeadLightsFront[j]*aBrightLights[i].m_front +
|
||||||
|
aBrightLights[i].m_pos;
|
||||||
|
RwIm3DVertexSetRGBA(&TempBufferRenderVertices[TempBufferVerticesStored+j], r, g, b, a);
|
||||||
|
RwIm3DVertexSetPos(&TempBufferRenderVertices[TempBufferVerticesStored+j], pos.x, pos.y, pos.z);
|
||||||
|
}
|
||||||
|
for(j = 0; j < 12*3; j++)
|
||||||
|
TempBufferRenderIndexList[TempBufferIndicesStored+j] = CubeIndices[j] + TempBufferVerticesStored;
|
||||||
|
TempBufferVerticesStored += 8;
|
||||||
|
TempBufferIndicesStored += 12*3;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case BRIGHTLIGHT_SIREN:
|
||||||
|
for(j = 0; j < 6; j++){
|
||||||
|
pos = SirenLightsSide[j]*aBrightLights[i].m_side +
|
||||||
|
SirenLightsUp[j]*aBrightLights[i].m_up +
|
||||||
|
aBrightLights[i].m_pos;
|
||||||
|
RwIm3DVertexSetRGBA(&TempBufferRenderVertices[TempBufferVerticesStored+j], r, g, b, a);
|
||||||
|
RwIm3DVertexSetPos(&TempBufferRenderVertices[TempBufferVerticesStored+j], pos.x, pos.y, pos.z);
|
||||||
|
}
|
||||||
|
for(j = 0; j < 4*3; j++)
|
||||||
|
TempBufferRenderIndexList[TempBufferIndicesStored+j] = TrafficLightIndices[j] + TempBufferVerticesStored;
|
||||||
|
TempBufferVerticesStored += 6;
|
||||||
|
TempBufferIndicesStored += 4*3;
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
RenderOutGeometryBuffer();
|
||||||
|
RwRenderStateSet(rwRENDERSTATEVERTEXALPHAENABLE, (void*)FALSE);
|
||||||
|
NumBrightLights = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
CBrightLights::RenderOutGeometryBuffer(void)
|
||||||
|
{
|
||||||
|
if(TempBufferIndicesStored != 0){
|
||||||
|
LittleTest();
|
||||||
|
if(RwIm3DTransform(TempBufferRenderVertices, TempBufferVerticesStored, nil, rwIM3D_VERTEXUV)){
|
||||||
|
RwIm3DRenderIndexedPrimitive(rwPRIMTYPETRILIST, TempBufferRenderIndexList, TempBufferIndicesStored);
|
||||||
|
RwIm3DEnd();
|
||||||
|
}
|
||||||
|
TempBufferVerticesStored = 0;
|
||||||
|
TempBufferIndicesStored = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int CShinyTexts::NumShinyTexts;
|
int CShinyTexts::NumShinyTexts;
|
||||||
CShinyText CShinyTexts::aShinyTexts[NUMSHINYTEXTS];
|
CShinyText CShinyTexts::aShinyTexts[NUMSHINYTEXTS];
|
||||||
|
|
||||||
@ -711,6 +937,11 @@ STARTPATCHES
|
|||||||
InjectHook(0x51B400, C3dMarkers::Render, PATCH_JUMP);
|
InjectHook(0x51B400, C3dMarkers::Render, PATCH_JUMP);
|
||||||
InjectHook(0x51B3B0, C3dMarkers::Shutdown, PATCH_JUMP);
|
InjectHook(0x51B3B0, C3dMarkers::Shutdown, PATCH_JUMP);
|
||||||
|
|
||||||
|
InjectHook(0x5197A0, CBrightLights::Init, PATCH_JUMP);
|
||||||
|
InjectHook(0x51A410, CBrightLights::RegisterOne, PATCH_JUMP);
|
||||||
|
InjectHook(0x5197B0, CBrightLights::Render, PATCH_JUMP);
|
||||||
|
InjectHook(0x51A3B0, CBrightLights::RenderOutGeometryBuffer, PATCH_JUMP);
|
||||||
|
|
||||||
InjectHook(0x51A5A0, CShinyTexts::Init, PATCH_JUMP);
|
InjectHook(0x51A5A0, CShinyTexts::Init, PATCH_JUMP);
|
||||||
InjectHook(0x51AAB0, CShinyTexts::RegisterOne, PATCH_JUMP);
|
InjectHook(0x51AAB0, CShinyTexts::RegisterOne, PATCH_JUMP);
|
||||||
InjectHook(0x51A5B0, CShinyTexts::Render, PATCH_JUMP);
|
InjectHook(0x51A5B0, CShinyTexts::Render, PATCH_JUMP);
|
||||||
|
@ -37,12 +37,6 @@ public:
|
|||||||
static void Update(void);
|
static void Update(void);
|
||||||
};
|
};
|
||||||
|
|
||||||
class CBrightLights
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
static void RegisterOne(CVector pos, CVector up, CVector right, CVector fwd, uint8 type, uint8 unk1 = 0, uint8 unk2 = 0, uint8 unk3 = 0);
|
|
||||||
};
|
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
MARKERTYPE_0 = 0,
|
MARKERTYPE_0 = 0,
|
||||||
@ -95,6 +89,58 @@ public:
|
|||||||
static RpClump* (&m_pRpClumpArray)[NUMMARKERTYPES];
|
static RpClump* (&m_pRpClumpArray)[NUMMARKERTYPES];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
BRIGHTLIGHT_INVALID,
|
||||||
|
BRIGHTLIGHT_TRAFFIC_GREEN,
|
||||||
|
BRIGHTLIGHT_TRAFFIC_YELLOW,
|
||||||
|
BRIGHTLIGHT_TRAFFIC_RED,
|
||||||
|
|
||||||
|
// white
|
||||||
|
BRIGHTLIGHT_FRONT_LONG,
|
||||||
|
BRIGHTLIGHT_FRONT_SMALL,
|
||||||
|
BRIGHTLIGHT_FRONT_BIG,
|
||||||
|
BRIGHTLIGHT_FRONT_TALL,
|
||||||
|
|
||||||
|
// red
|
||||||
|
BRIGHTLIGHT_REAR_LONG,
|
||||||
|
BRIGHTLIGHT_REAR_SMALL,
|
||||||
|
BRIGHTLIGHT_REAR_BIG,
|
||||||
|
BRIGHTLIGHT_REAR_TALL,
|
||||||
|
|
||||||
|
BRIGHTLIGHT_SIREN, // unused
|
||||||
|
|
||||||
|
BRIGHTLIGHT_FRONT = BRIGHTLIGHT_FRONT_LONG,
|
||||||
|
BRIGHTLIGHT_REAR = BRIGHTLIGHT_REAR_LONG,
|
||||||
|
};
|
||||||
|
|
||||||
|
class CBrightLight
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
CVector m_pos;
|
||||||
|
CVector m_up;
|
||||||
|
CVector m_side;
|
||||||
|
CVector m_front;
|
||||||
|
float m_camDist;
|
||||||
|
uint8 m_type;
|
||||||
|
uint8 m_red;
|
||||||
|
uint8 m_green;
|
||||||
|
uint8 m_blue;
|
||||||
|
};
|
||||||
|
|
||||||
|
class CBrightLights
|
||||||
|
{
|
||||||
|
static int NumBrightLights;
|
||||||
|
static CBrightLight aBrightLights[NUMBRIGHTLIGHTS];
|
||||||
|
public:
|
||||||
|
static void Init(void);
|
||||||
|
static void RegisterOne(CVector pos, CVector up, CVector side, CVector front,
|
||||||
|
uint8 type, uint8 red = 0, uint8 green = 0, uint8 blue = 0);
|
||||||
|
static void Render(void);
|
||||||
|
static void RenderOutGeometryBuffer(void);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
SHINYTEXT_WALK = 1,
|
SHINYTEXT_WALK = 1,
|
||||||
|
@ -253,7 +253,7 @@ CAutomobile::ProcessControl(void)
|
|||||||
|
|
||||||
ProcessCarAlarm();
|
ProcessCarAlarm();
|
||||||
|
|
||||||
// Scan if this car is committing a crime that the police can see
|
// Scan if this car sees the player committing any crimes
|
||||||
if(m_status != STATUS_ABANDONED && m_status != STATUS_WRECKED &&
|
if(m_status != STATUS_ABANDONED && m_status != STATUS_WRECKED &&
|
||||||
m_status != STATUS_PLAYER && m_status != STATUS_PLAYER_REMOTE && m_status != STATUS_PLAYER_DISABLED){
|
m_status != STATUS_PLAYER && m_status != STATUS_PLAYER_REMOTE && m_status != STATUS_PLAYER_DISABLED){
|
||||||
switch(GetModelIndex())
|
switch(GetModelIndex())
|
||||||
@ -1727,9 +1727,9 @@ CAutomobile::PreRender(void)
|
|||||||
|
|
||||||
// bright lights
|
// bright lights
|
||||||
if(Damage.GetLightStatus(VEHLIGHT_FRONT_LEFT) == LIGHT_STATUS_OK && !bNoBrightHeadLights)
|
if(Damage.GetLightStatus(VEHLIGHT_FRONT_LEFT) == LIGHT_STATUS_OK && !bNoBrightHeadLights)
|
||||||
CBrightLights::RegisterOne(lightL, GetUp(), GetRight(), GetForward(), pHandling->FrontLights + 4);
|
CBrightLights::RegisterOne(lightL, GetUp(), GetRight(), GetForward(), pHandling->FrontLights + BRIGHTLIGHT_FRONT);
|
||||||
if(Damage.GetLightStatus(VEHLIGHT_FRONT_RIGHT) == LIGHT_STATUS_OK && !bNoBrightHeadLights)
|
if(Damage.GetLightStatus(VEHLIGHT_FRONT_RIGHT) == LIGHT_STATUS_OK && !bNoBrightHeadLights)
|
||||||
CBrightLights::RegisterOne(lightR, GetUp(), GetRight(), GetForward(), pHandling->FrontLights + 4);
|
CBrightLights::RegisterOne(lightR, GetUp(), GetRight(), GetForward(), pHandling->FrontLights + BRIGHTLIGHT_FRONT);
|
||||||
|
|
||||||
// Taillights
|
// Taillights
|
||||||
|
|
||||||
@ -1798,9 +1798,9 @@ CAutomobile::PreRender(void)
|
|||||||
|
|
||||||
// bright lights
|
// bright lights
|
||||||
if(Damage.GetLightStatus(VEHLIGHT_REAR_LEFT) == LIGHT_STATUS_OK)
|
if(Damage.GetLightStatus(VEHLIGHT_REAR_LEFT) == LIGHT_STATUS_OK)
|
||||||
CBrightLights::RegisterOne(lightL, GetUp(), GetRight(), GetForward(), pHandling->RearLights + 8);
|
CBrightLights::RegisterOne(lightL, GetUp(), GetRight(), GetForward(), pHandling->RearLights + BRIGHTLIGHT_REAR);
|
||||||
if(Damage.GetLightStatus(VEHLIGHT_REAR_RIGHT) == LIGHT_STATUS_OK)
|
if(Damage.GetLightStatus(VEHLIGHT_REAR_RIGHT) == LIGHT_STATUS_OK)
|
||||||
CBrightLights::RegisterOne(lightR, GetUp(), GetRight(), GetForward(), pHandling->RearLights + 8);
|
CBrightLights::RegisterOne(lightR, GetUp(), GetRight(), GetForward(), pHandling->RearLights + BRIGHTLIGHT_REAR);
|
||||||
|
|
||||||
// Light shadows
|
// Light shadows
|
||||||
if(!alarmOff){
|
if(!alarmOff){
|
||||||
@ -1873,9 +1873,9 @@ CAutomobile::PreRender(void)
|
|||||||
CCoronas::TYPE_STAR, CCoronas::FLARE_NONE, CCoronas::REFLECTION_ON,
|
CCoronas::TYPE_STAR, CCoronas::FLARE_NONE, CCoronas::REFLECTION_ON,
|
||||||
CCoronas::LOSCHECK_OFF, CCoronas::STREAK_ON, 0.0f);
|
CCoronas::LOSCHECK_OFF, CCoronas::STREAK_ON, 0.0f);
|
||||||
if(Damage.GetLightStatus(VEHLIGHT_REAR_LEFT) == LIGHT_STATUS_OK)
|
if(Damage.GetLightStatus(VEHLIGHT_REAR_LEFT) == LIGHT_STATUS_OK)
|
||||||
CBrightLights::RegisterOne(lightL, GetUp(), GetRight(), GetForward(), pHandling->RearLights + 4);
|
CBrightLights::RegisterOne(lightL, GetUp(), GetRight(), GetForward(), pHandling->RearLights + BRIGHTLIGHT_FRONT);
|
||||||
if(Damage.GetLightStatus(VEHLIGHT_REAR_RIGHT) == LIGHT_STATUS_OK)
|
if(Damage.GetLightStatus(VEHLIGHT_REAR_RIGHT) == LIGHT_STATUS_OK)
|
||||||
CBrightLights::RegisterOne(lightR, GetUp(), GetRight(), GetForward(), pHandling->RearLights + 4);
|
CBrightLights::RegisterOne(lightR, GetUp(), GetRight(), GetForward(), pHandling->RearLights + BRIGHTLIGHT_FRONT);
|
||||||
}else{
|
}else{
|
||||||
// braking
|
// braking
|
||||||
if(Damage.GetLightStatus(VEHLIGHT_REAR_LEFT) == LIGHT_STATUS_OK)
|
if(Damage.GetLightStatus(VEHLIGHT_REAR_LEFT) == LIGHT_STATUS_OK)
|
||||||
@ -1889,9 +1889,9 @@ CAutomobile::PreRender(void)
|
|||||||
CCoronas::TYPE_STAR, CCoronas::FLARE_NONE, CCoronas::REFLECTION_ON,
|
CCoronas::TYPE_STAR, CCoronas::FLARE_NONE, CCoronas::REFLECTION_ON,
|
||||||
CCoronas::LOSCHECK_OFF, CCoronas::STREAK_ON, 0.0f);
|
CCoronas::LOSCHECK_OFF, CCoronas::STREAK_ON, 0.0f);
|
||||||
if(Damage.GetLightStatus(VEHLIGHT_REAR_LEFT) == LIGHT_STATUS_OK)
|
if(Damage.GetLightStatus(VEHLIGHT_REAR_LEFT) == LIGHT_STATUS_OK)
|
||||||
CBrightLights::RegisterOne(lightL, GetUp(), GetRight(), GetForward(), pHandling->RearLights + 8);
|
CBrightLights::RegisterOne(lightL, GetUp(), GetRight(), GetForward(), pHandling->RearLights + BRIGHTLIGHT_REAR);
|
||||||
if(Damage.GetLightStatus(VEHLIGHT_REAR_RIGHT) == LIGHT_STATUS_OK)
|
if(Damage.GetLightStatus(VEHLIGHT_REAR_RIGHT) == LIGHT_STATUS_OK)
|
||||||
CBrightLights::RegisterOne(lightR, GetUp(), GetRight(), GetForward(), pHandling->RearLights + 8);
|
CBrightLights::RegisterOne(lightR, GetUp(), GetRight(), GetForward(), pHandling->RearLights + BRIGHTLIGHT_REAR);
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
if(Damage.GetLightStatus(VEHLIGHT_REAR_LEFT) == LIGHT_STATUS_OK)
|
if(Damage.GetLightStatus(VEHLIGHT_REAR_LEFT) == LIGHT_STATUS_OK)
|
||||||
|
Loading…
Reference in New Issue
Block a user