Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/bmp/image_loader_bmp.h
10277 views
1
/**************************************************************************/
2
/* image_loader_bmp.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/io/image_loader.h"
34
35
class ImageLoaderBMP : public ImageFormatLoader {
36
protected:
37
static const unsigned BITMAP_SIGNATURE = 0x4d42;
38
39
static const unsigned BITMAP_FILE_HEADER_SIZE = 14; // bmp_file_header_s
40
static const unsigned BITMAP_INFO_HEADER_MIN_SIZE = 40; // bmp_info_header_s
41
42
enum bmp_compression_s {
43
BI_RGB = 0x00,
44
BI_RLE8 = 0x01, // compressed
45
BI_RLE4 = 0x02, // compressed
46
BI_BITFIELDS = 0x03,
47
BI_JPEG = 0x04,
48
BI_PNG = 0x05,
49
BI_ALPHABITFIELDS = 0x06,
50
BI_CMYK = 0x0b,
51
BI_CMYKRLE8 = 0x0c, // compressed
52
BI_CMYKRLE4 = 0x0d // compressed
53
};
54
55
struct bmp_header_s {
56
struct bmp_file_header_s {
57
uint16_t bmp_signature = 0;
58
uint32_t bmp_file_size = 0;
59
uint32_t bmp_file_padding = 0;
60
uint32_t bmp_file_offset = 0;
61
} bmp_file_header;
62
63
struct bmp_info_header_s {
64
uint32_t bmp_header_size = 0;
65
uint32_t bmp_width = 0;
66
uint32_t bmp_height = 0;
67
uint16_t bmp_planes = 0;
68
uint16_t bmp_bit_count = 0;
69
uint32_t bmp_compression = 0;
70
uint32_t bmp_size_image = 0;
71
uint32_t bmp_pixels_per_meter_x = 0;
72
uint32_t bmp_pixels_per_meter_y = 0;
73
uint32_t bmp_colors_used = 0;
74
uint32_t bmp_important_colors = 0;
75
} bmp_info_header;
76
77
struct bmp_bitfield_s {
78
uint16_t alpha_mask = 0x8000;
79
uint16_t red_mask = 0x7C00;
80
uint16_t green_mask = 0x03E0;
81
uint16_t blue_mask = 0x001F;
82
uint16_t alpha_mask_width = 1u;
83
uint16_t red_mask_width = 5u;
84
uint16_t green_mask_width = 5u;
85
uint16_t blue_mask_width = 5u;
86
uint8_t alpha_offset = 15u; // Used for bit shifting.
87
uint8_t red_offset = 10u; // Used for bit shifting.
88
uint8_t green_offset = 5u; // Used for bit shifting.
89
//uint8_t blue_offset = 0u; // Always LSB aligned no shifting needed.
90
//uint8_t alpha_max = 1u; // Always boolean or on, so no scaling needed.
91
uint8_t red_max = 32u; // Used for color space scaling.
92
uint8_t green_max = 32u; // Used for color space scaling.
93
uint8_t blue_max = 32u; // Used for color space scaling.
94
} bmp_bitfield;
95
};
96
97
static Error convert_to_image(Ref<Image> p_image,
98
const uint8_t *p_buffer,
99
const uint8_t *p_color_buffer,
100
const uint32_t color_table_size,
101
const bmp_header_s &p_header);
102
103
public:
104
virtual Error load_image(Ref<Image> p_image, Ref<FileAccess> f, BitField<ImageFormatLoader::LoaderFlags> p_flags, float p_scale);
105
virtual void get_recognized_extensions(List<String> *p_extensions) const;
106
ImageLoaderBMP();
107
};
108
109