Skip to content

Commit

Permalink
Fix race condition on accessing m_time_of_day_speed causing day night…
Browse files Browse the repository at this point in the history
… race on some architectures
  • Loading branch information
sapier authored and sapier committed Jun 22, 2014
1 parent b3a2ef1 commit f6fc39e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 7 deletions.
28 changes: 25 additions & 3 deletions src/environment.cpp
Expand Up @@ -42,6 +42,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "map.h"
#include "emerge.h"
#include "util/serialize.h"
#include "jthread/jmutexautolock.h"

#define PP(x) "("<<(x).X<<","<<(x).Y<<","<<(x).Z<<")"

Expand Down Expand Up @@ -196,12 +197,30 @@ u32 Environment::getDayNightRatio()
return time_to_daynight_ratio(m_time_of_day_f*24000, smooth);
}

void Environment::setTimeOfDaySpeed(float speed)
{
JMutexAutoLock(this->m_lock);
m_time_of_day_speed = speed;
}

float Environment::getTimeOfDaySpeed()
{
JMutexAutoLock(this->m_lock);
float retval = m_time_of_day_speed;
return retval;
}

void Environment::stepTimeOfDay(float dtime)
{
float day_speed = 0;
{
JMutexAutoLock(this->m_lock);
day_speed = m_time_of_day_speed;
}

m_time_counter += dtime;
f32 speed = m_time_of_day_speed * 24000./(24.*3600);
f32 speed = day_speed * 24000./(24.*3600);
u32 units = (u32)(m_time_counter*speed);
m_time_counter -= (f32)units / speed;
bool sync_f = false;
if(units > 0){
// Sync at overflow
Expand All @@ -211,8 +230,11 @@ void Environment::stepTimeOfDay(float dtime)
if(sync_f)
m_time_of_day_f = (float)m_time_of_day / 24000.0;
}
if (speed > 0) {
m_time_counter -= (f32)units / speed;
}
if(!sync_f){
m_time_of_day_f += m_time_of_day_speed/24/3600*dtime;
m_time_of_day_f += day_speed/24/3600*dtime;
if(m_time_of_day_f > 1.0)
m_time_of_day_f -= 1.0;
if(m_time_of_day_f < 0.0)
Expand Down
10 changes: 6 additions & 4 deletions src/environment.h
Expand Up @@ -38,6 +38,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "util/numeric.h"
#include "mapnode.h"
#include "mapblock.h"
#include "jthread/jmutex.h"

class ServerEnvironment;
class ActiveBlockModifier;
Expand Down Expand Up @@ -93,11 +94,9 @@ class Environment

void stepTimeOfDay(float dtime);

void setTimeOfDaySpeed(float speed)
{ m_time_of_day_speed = speed; }
void setTimeOfDaySpeed(float speed);

float getTimeOfDaySpeed()
{ return m_time_of_day_speed; }
float getTimeOfDaySpeed();

void setDayNightRatioOverride(bool enable, u32 value)
{
Expand All @@ -121,6 +120,9 @@ class Environment
// Overriding the day-night ratio is useful for custom sky visuals
bool m_enable_day_night_ratio_override;
u32 m_day_night_ratio_override;

private:
JMutex m_lock;

};

Expand Down

0 comments on commit f6fc39e

Please sign in to comment.