summaryrefslogtreecommitdiff
path: root/core/compressed_translation.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/compressed_translation.h')
-rw-r--r--core/compressed_translation.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/core/compressed_translation.h b/core/compressed_translation.h
index a72be739a1..c8b3cd2330 100644
--- a/core/compressed_translation.h
+++ b/core/compressed_translation.h
@@ -34,7 +34,6 @@
#include "core/translation.h"
class PHashTranslation : public Translation {
-
GDCLASS(PHashTranslation, Translation);
//this translation uses a sort of modified perfect hash algorithm
@@ -43,17 +42,15 @@ class PHashTranslation : public Translation {
//of catching untranslated strings
//load/store friendly types
- PoolVector<int> hash_table;
- PoolVector<int> bucket_table;
- PoolVector<uint8_t> strings;
+ Vector<int> hash_table;
+ Vector<int> bucket_table;
+ Vector<uint8_t> strings;
struct Bucket {
-
int size;
uint32_t func;
struct Elem {
-
uint32_t key;
uint32_t str_offset;
uint32_t comp_size;
@@ -64,11 +61,10 @@ class PHashTranslation : public Translation {
};
_FORCE_INLINE_ uint32_t hash(uint32_t d, const char *p_str) const {
-
- if (d == 0)
+ if (d == 0) {
d = 0x1000193;
+ }
while (*p_str) {
-
d = (d * 0x1000193) ^ uint32_t(*p_str);
p_str++;
}
@@ -83,10 +79,11 @@ protected:
static void _bind_methods();
public:
- virtual StringName get_message(const StringName &p_src_text) const; //overridable for other implementations
+ virtual StringName get_message(const StringName &p_src_text, const StringName &p_context = "") const override; //overridable for other implementations
+ virtual StringName get_plural_message(const StringName &p_src_text, const StringName &p_plural_text, int p_n, const StringName &p_context = "") const override;
void generate(const Ref<Translation> &p_from);
- PHashTranslation();
+ PHashTranslation() {}
};
#endif // COMPRESSED_TRANSLATION_H