mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:42:44 +00:00 
			
		
		
		
	 0d8aaaaa44
			
		
	
	
		0d8aaaaa44
		
	
	
	
	
		
			
			Get rid of the dedicated Emoji class to make it easier to store a null value signifying a failed lookup. This allows us to remember failed lookups, making subsequent failures for the same codepoint much faster. :^)
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			618 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			618 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <AK/HashMap.h>
 | |
| #include <AK/String.h>
 | |
| #include <LibDraw/Emoji.h>
 | |
| #include <LibDraw/GraphicsBitmap.h>
 | |
| 
 | |
| static HashMap<u32, RefPtr<GraphicsBitmap>> s_emojis;
 | |
| 
 | |
| const GraphicsBitmap* Emoji::emoji_for_codepoint(u32 codepoint)
 | |
| {
 | |
|     auto it = s_emojis.find(codepoint);
 | |
|     if (it != s_emojis.end())
 | |
|         return (*it).value.ptr();
 | |
| 
 | |
|     String path = String::format("/res/emoji/U+%X.png", codepoint);
 | |
| 
 | |
|     auto bitmap = GraphicsBitmap::load_from_file(path);
 | |
|     if (!bitmap) {
 | |
|         s_emojis.set(codepoint, nullptr);
 | |
|         return nullptr;
 | |
|     }
 | |
| 
 | |
|     s_emojis.set(codepoint, bitmap);
 | |
|     return bitmap.ptr();
 | |
| }
 |