Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/core/templates/bit_field.h
9973 views
1
/**************************************************************************/
2
/* bit_field.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "core/typedefs.h"
34
35
#include <type_traits>
36
37
// TODO: Replace `typename` with enum concept once C++20 concepts/constraints are allowed.
38
39
template <typename T>
40
class BitField {
41
static_assert(std::is_enum_v<T>);
42
uint64_t value;
43
44
public:
45
_ALWAYS_INLINE_ constexpr void set_flag(BitField p_flag) { value |= p_flag.value; }
46
_ALWAYS_INLINE_ constexpr bool has_flag(BitField p_flag) const { return value & p_flag.value; }
47
_ALWAYS_INLINE_ constexpr bool is_empty() const { return value == 0; }
48
_ALWAYS_INLINE_ constexpr void clear_flag(BitField p_flag) { value &= ~p_flag.value; }
49
_ALWAYS_INLINE_ constexpr void clear() { value = 0; }
50
51
[[nodiscard]] _ALWAYS_INLINE_ constexpr BitField get_combined(BitField p_other) const { return BitField(value | p_other.value); }
52
[[nodiscard]] _ALWAYS_INLINE_ constexpr BitField get_shared(BitField p_other) const { return BitField(value & p_other.value); }
53
[[nodiscard]] _ALWAYS_INLINE_ constexpr BitField get_different(BitField p_other) const { return BitField(value ^ p_other.value); }
54
55
_ALWAYS_INLINE_ constexpr BitField() = default;
56
_ALWAYS_INLINE_ constexpr BitField(T p_value) :
57
value(static_cast<uint64_t>(p_value)) {}
58
_ALWAYS_INLINE_ constexpr operator T() const { return static_cast<T>(value); }
59
60
// TODO: Unify as single constructor once C++20 `explicit` conditionals are allowed.
61
62
template <typename V, std::enable_if_t<std::is_arithmetic_v<V> && std::is_convertible_v<T, int>, int> = 0>
63
_ALWAYS_INLINE_ constexpr BitField(V p_value) :
64
value(static_cast<uint64_t>(p_value)) {}
65
template <typename V, std::enable_if_t<std::is_arithmetic_v<V> && !std::is_convertible_v<T, int>, int> = 0>
66
_ALWAYS_INLINE_ constexpr explicit BitField(V p_value) :
67
value(static_cast<uint64_t>(p_value)) {}
68
template <typename V, std::enable_if_t<std::is_arithmetic_v<V>, int> = 0>
69
_ALWAYS_INLINE_ constexpr explicit operator V() const { return static_cast<V>(value); }
70
};
71
72
// Implicitly zero-constructible as a trivially-constructible type.
73
static_assert(is_zero_constructible_v<BitField<Error>>);
74
75