mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-04-04 22:42:28 +02:00
allow using C/F for temperature in PROP tool
This commit is contained in:
parent
8fe78eacd8
commit
2b15024818
@ -193,6 +193,13 @@ void PropertyWindow::SetProperty()
|
||||
std::stringstream buffer(value);
|
||||
buffer.exceptions(std::stringstream::failbit | std::stringstream::badbit);
|
||||
buffer >> tool->propValue.Float;
|
||||
if (properties[property->GetOption().second].Name == "temp" && value.length())
|
||||
{
|
||||
if (value.substr(value.length()-1) == "C")
|
||||
tool->propValue.Float += 273.15;
|
||||
else if (value.substr(value.length()-1) == "F")
|
||||
tool->propValue.Float = (tool->propValue.Float-32.0f)*5/9+273.15f;
|
||||
}
|
||||
#ifdef DEBUG
|
||||
std::cout << "Got float value " << tool->propValue.Float << std::endl;
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user