WIP: [Android] Speedometer warning static threshold #9150
5 changed files with 26 additions and 1 deletions
|
@ -82,4 +82,10 @@ Java_app_organicmaps_util_StringUtils_nativeGetLocalizedSpeedUnits(JNIEnv * env,
|
|||
{
|
||||
return jni::ToJavaString(env, platform::GetLocalizedSpeedUnits());
|
||||
}
|
||||
|
||||
JNIEXPORT jdouble JNICALL
|
||||
Java_app_organicmaps_util_StringUtils_nativeLocalizedSpeedToMps(JNIEnv * env, jclass, jdouble speed)
|
||||
{
|
||||
return measurement_utils::UnitsToMps(speed, measurement_utils::GetMeasurementUnits());
|
||||
}
|
||||
|
||||
} // extern "C"
|
||||
|
|
|
@ -31,6 +31,7 @@ public class StringUtils
|
|||
|
||||
public static native Pair<String, String> nativeFormatSpeedAndUnits(double metersPerSecond);
|
||||
public static native Distance nativeFormatDistance(double meters);
|
||||
public static native double nativeLocalizedSpeedToMps(double speed);
|
||||
@NonNull
|
||||
public static native Pair<String, String> nativeGetLocalizedDistanceUnits();
|
||||
@NonNull
|
||||
|
|
|
@ -28,6 +28,11 @@ import java.util.concurrent.TimeUnit;
|
|||
|
||||
public class NavMenu
|
||||
{
|
||||
// If the current speed exceeds the allowed speed by 0.5 we do not show any warnings.
|
||||
// If the speed exceeds by more than 1 we inform the user about speed violation.
|
||||
// This constant should be treated as kmph or mph depending on locale.
|
||||
public static final double SPEED_LIMIT_THRESHOLD = 1.0;
|
||||
|
||||
private final BottomSheetBehavior<View> mNavBottomSheetBehavior;
|
||||
private final View mBottomSheetBackground;
|
||||
private final View mHeaderFrame;
|
||||
|
@ -222,7 +227,8 @@ public class NavMenu
|
|||
else
|
||||
mSpeedValue.setText(speedAndUnits.first);
|
||||
|
||||
if (info.speedLimitMps > 0.0 && last.getSpeed() > info.speedLimitMps)
|
||||
final double speedLimitThresholdMps = StringUtils.nativeLocalizedSpeedToMps(SPEED_LIMIT_THRESHOLD);
|
||||
if (info.speedLimitMps > 0.0 && last.getSpeed() > info.speedLimitMps + speedLimitThresholdMps)
|
||||
{
|
||||
if (info.isSpeedCamLimitExceeded())
|
||||
mSpeedValue.setTextColor(ContextCompat.getColor(mActivity, R.color.white_primary));
|
||||
|
|
|
@ -184,6 +184,16 @@ double MpsToUnits(double metersPerSecond, Units units)
|
|||
UNREACHABLE();
|
||||
}
|
||||
|
||||
double UnitsToMps(double speed, Units units)
|
||||
{
|
||||
switch (units)
|
||||
{
|
||||
case Units::Imperial: return MphToMps(speed); break;
|
||||
case Units::Metric: return KmphToMps(speed); break;
|
||||
}
|
||||
UNREACHABLE();
|
||||
}
|
||||
strump
commented
TODO: cover with unit-tests TODO: cover with unit-tests
|
||||
|
||||
std::string FormatSpeedNumeric(double metersPerSecond, Units units)
|
||||
{
|
||||
double const unitsPerHour = MpsToUnits(metersPerSecond, units);
|
||||
|
|
|
@ -29,9 +29,11 @@ inline double FeetToMiles(double ft) { return ft * 0.00018939; }
|
|||
inline double InchesToMeters(double in) { return in / 39.370; }
|
||||
inline double NauticalMilesToMeters(double nmi) { return nmi * 1852; }
|
||||
inline double constexpr KmphToMps(double kmph) { return kmph * 1000 / 3600; }
|
||||
inline double constexpr MphToMps(double mph) { return MiphToKmph(mph) * 1000 / 3600; }
|
||||
|
||||
double ToSpeedKmPH(double speed, Units units);
|
||||
double MpsToUnits(double mps, Units units);
|
||||
double UnitsToMps(double speed, Units units);
|
||||
|
||||
/// @return Speed value string (without suffix) in km/h for Metric and in mph for Imperial.
|
||||
std::string FormatSpeedNumeric(double metersPerSecond, Units units);
|
||||
|
|
Reference in a new issue
Should we have conversion from mph/kph to meters-per-hour here? Is
StringUtils
a good place for it?