OpenTTD Source 20250521-master-g82876c25e0
bitmath_func.cpp
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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/>.
6 */
7
10#include "../stdafx.h"
11
12#include "../3rdparty/catch2/catch.hpp"
13
14#include "../core/bitmath_func.hpp"
15
16#include "../safeguards.h"
17
18TEST_CASE("SetBitIterator tests")
19{
20 auto test_case = [&](auto input, std::initializer_list<uint> expected) {
21 auto iter = expected.begin();
22 for (auto bit : SetBitIterator(input)) {
23 if (iter == expected.end()) return false;
24 if (bit != *iter) return false;
25 ++iter;
26 }
27 return iter == expected.end();
28 };
29 CHECK(test_case(0, {}));
30 CHECK(test_case(1, { 0 }));
31 CHECK(test_case(42, { 1, 3, 5 }));
32 CHECK(test_case(0x8080FFFFU, { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 23, 31 }));
33 CHECK(test_case(INT32_MIN, { 31 }));
34 CHECK(test_case(INT64_MIN, { 63 }));
35}
Iterable ensemble of each set bit in a value.