Changeset - r27818:5c98d0beef70
[Not reviewed]
master
0 2 1
Rubidium - 10 months ago 2023-08-20 20:58:49
rubidium@openttd.org
Fix #11181: attempting to read string as int triggers assertion
3 files changed with 58 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/strings.cpp
Show inline comments
 
@@ -196,8 +196,11 @@ bool HaveDParamChanged(const std::vector
 
{
 
	bool changed = false;
 
	for (size_t i = 0; !changed && i < backup.size(); i++) {
 
		if (backup[i].string.has_value()) {
 
			changed = backup[i].string.value() != (const char *)(size_t)_global_string_params.GetParam(i);
 
		bool global_has_string = _global_string_params.GetParamStr(i) != nullptr;
 
		if (global_has_string != backup[i].string.has_value()) return true;
 

	
 
		if (global_has_string) {
 
			changed = backup[i].string.value() != _global_string_params.GetParamStr(i);
 
		} else {
 
			changed = backup[i].data != _global_string_params.GetParam(i);
 
		}
src/tests/CMakeLists.txt
Show inline comments
 
@@ -2,5 +2,6 @@ add_test_files(
 
    landscape_partial_pixel_z.cpp
 
    math_func.cpp
 
    string_func.cpp
 
    strings_func.cpp
 
    test_main.cpp
 
)
src/tests/strings_func.cpp
Show inline comments
 
new file 100644
 
/*
 
 * This file is part of OpenTTD.
 
 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
 
 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
 
 */
 

	
 
/** @file strings_func.cpp Test functionality from strings_func. */
 

	
 
#include "../stdafx.h"
 

	
 
#include "../3rdparty/catch2/catch.hpp"
 

	
 
#include "../strings_func.h"
 

	
 
TEST_CASE("HaveDParamChanged")
 
{
 
	SetDParam(0, 0);
 
	SetDParamStr(1, "some string");
 

	
 
	std::vector<StringParameterBackup> backup;
 
	CopyOutDParam(backup, 2);
 

	
 
	CHECK(HaveDParamChanged(backup) == false);
 

	
 
	/* A different parameter 0 (both string and numeric). */
 
	SetDParam(0, 1);
 
	CHECK(HaveDParamChanged(backup) == true);
 

	
 
	SetDParamStr(0, "some other string");
 
	CHECK(HaveDParamChanged(backup) == true);
 

	
 
	/* Back to the original state, nothing should have changed. */
 
	SetDParam(0, 0);
 
	CHECK(HaveDParamChanged(backup) == false);
 

	
 
	/* A different parameter 1 (both string and numeric). */
 
	SetDParamStr(1, "some other string");
 
	CHECK(HaveDParamChanged(backup) == true);
 

	
 
	SetDParam(1, 0);
 
	CHECK(HaveDParamChanged(backup) == true);
 

	
 
	/* Back to the original state, nothing should have changed. */
 
	SetDParamStr(1, "some string");
 
	CHECK(HaveDParamChanged(backup) == false);
 

	
 
	/* Changing paramter 2 should not have any effect, as the backup is only 2 long. */
 
	SetDParam(2, 3);
 
	CHECK(HaveDParamChanged(backup) == false);
 

	
 
}
0 comments (0 inline, 0 general)