mirror of
https://github.com/halpz/re3.git
synced 2025-06-30 04:36:18 +00:00
Merge remote-tracking branch 'origin/master' into miami
# Conflicts: # README.md # src/core/Frontend.cpp # src/core/Frontend.h # src/peds/Ped.cpp # src/peds/Ped.h # src/render/Renderer.cpp # src/vehicles/Plane.cpp
This commit is contained in:
@ -1623,7 +1623,7 @@ cAudioManager::GetVehicleDriveWheelSkidValue(uint8 wheel, CAutomobile *automobil
|
||||
{
|
||||
case WHEEL_STATE_SPINNING:
|
||||
if (gasPedalAudio > 0.4f)
|
||||
relativeVelChange = (gasPedalAudio - 0.4f) * 1.6666666f * 0.75f;
|
||||
relativeVelChange = (gasPedalAudio - 0.4f) * (5.0f / 3.0f) / (4.0f / 3.0f);
|
||||
break;
|
||||
case WHEEL_STATE_SKIDDING:
|
||||
relativeVelChange = Min(1.0f, Abs(velocityChange) / transmission->fMaxVelocity);
|
||||
@ -1631,7 +1631,7 @@ cAudioManager::GetVehicleDriveWheelSkidValue(uint8 wheel, CAutomobile *automobil
|
||||
case WHEEL_STATE_FIXED:
|
||||
relativeVel = gasPedalAudio;
|
||||
if (relativeVel > 0.4f)
|
||||
relativeVel = (gasPedalAudio - 0.4f) * 1.6666666f;
|
||||
relativeVel = (gasPedalAudio - 0.4f) * (5.0f / 3.0f);
|
||||
|
||||
velChange = Abs(velocityChange);
|
||||
if (velChange > 0.04f)
|
||||
@ -2662,7 +2662,7 @@ cAudioManager::ProcessBoatMovingOverWater(cVehicleParams *params)
|
||||
return true;
|
||||
|
||||
velocityChange = Min(0.75f, velocityChange);
|
||||
multiplier = (velocityChange - 0.0005f) * 1.3342f;
|
||||
multiplier = (velocityChange - 0.0005f) / (1499.0f / 2000.0f);
|
||||
CalculateDistance(params->m_bDistanceCalculated, params->m_fDistance);
|
||||
vol = (30.f * multiplier);
|
||||
m_sQueueSample.m_nVolume = ComputeVolume(vol, 50.f, m_sQueueSample.m_fDistance);
|
||||
@ -2783,7 +2783,7 @@ cAudioManager::ProcessJumbo(cVehicleParams *params)
|
||||
DoJumboVolOffset();
|
||||
position = PlanePathPosition[plane->m_nPlaneId];
|
||||
if (position <= TakeOffPoint) {
|
||||
if (plane->m_fSpeed <= 0.10334f) {
|
||||
if (plane->m_fSpeed <= 0.103344f) {
|
||||
ProcessJumboTaxi();
|
||||
return;
|
||||
}
|
||||
@ -2795,7 +2795,7 @@ cAudioManager::ProcessJumbo(cVehicleParams *params)
|
||||
ProcessJumboFlying();
|
||||
} else {
|
||||
if (position > LandingPoint) {
|
||||
if (plane->m_fSpeed > 0.10334f) {
|
||||
if (plane->m_fSpeed > 0.103344f) {
|
||||
ProcessJumboDecel(plane);
|
||||
return;
|
||||
}
|
||||
@ -2825,7 +2825,7 @@ cAudioManager::ProcessJumboAccel(CPlane *plane)
|
||||
float modificator;
|
||||
|
||||
if (SetupJumboFlySound(20)) {
|
||||
modificator = (plane->m_fSpeed - 0.10334f) * 1.676f;
|
||||
modificator = (plane->m_fSpeed - 0.103344f) * 1.6760077f;
|
||||
if (modificator > 1.0f)
|
||||
modificator = 1.0f;
|
||||
if (SetupJumboRumbleSound(MAX_VOLUME * modificator) && SetupJumboTaxiSound((1.0f - modificator) * 75.f)) {
|
||||
@ -2878,7 +2878,7 @@ void
|
||||
cAudioManager::ProcessJumboDecel(CPlane *plane)
|
||||
{
|
||||
if (SetupJumboFlySound(20) && SetupJumboTaxiSound(75)) {
|
||||
const float modificator = Min(1.f, (plane->m_fSpeed - 0.10334f) * 1.676f);
|
||||
const float modificator = Min(1.f, (plane->m_fSpeed - 0.103344f) * 1.6760077f);
|
||||
SetupJumboEngineSound(MAX_VOLUME * modificator, 6050.f * modificator + 16000);
|
||||
SetupJumboWhineSound(18, 29500);
|
||||
}
|
||||
|
Reference in New Issue
Block a user