-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathFileHDR.hpp
63 lines (45 loc) · 2.58 KB
/
FileHDR.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*#######################################################################################
Copyright (c) 2017-2019 Kasugaccho
Copyright (c) 2018-2019 As Project
https://github.com/Kasugaccho/DungeonTemplateLibrary
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#######################################################################################*/
#ifndef INCLUDED_DUNGEON_TEMPLATE_LIBRARY_DTL_STORAGE_FILE_HDR_HPP
#define INCLUDED_DUNGEON_TEMPLATE_LIBRARY_DTL_STORAGE_FILE_HDR_HPP
/*#######################################################################################
日本語リファレンス (Reference-JP)
https://github.com/Kasugaccho/DungeonTemplateLibrary/wiki/dtl::storage::FileHDR-(ストレージクラス)/
#######################################################################################*/
#include <DTL/Storage/FileBaseBin.hpp>
#include <DTL/Type/UniquePtr.hpp>
#ifndef STB_IMAGE_WRITE_IMPLEMENTATION
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include <DTL/ThirdParty/STB/stb_image_write.h>
#endif
/*#######################################################################################
[概要] "dtl名前空間"とは"DungeonTemplateLibrary"の全ての機能が含まれる名前空間である。
[Summary] The "dtl" is a namespace that contains all the functions of "DungeonTemplateLibrary".
#######################################################################################*/
namespace dtl {
inline namespace storage { //"dtl::storage"名前空間に属する
/*#######################################################################################
[概要] FileHDRとは "HDR形式の画像ファイルを出力する" 機能を持つクラスである。
#######################################################################################*/
template<typename Matrix_Var_, typename UniquePtr_ = DTL_TYPE_UNIQUE_PTR<float[]>>
class FileHDR : public ::dtl::storage::FileBaseBin<FileHDR<Matrix_Var_, UniquePtr_>, Matrix_Var_, UniquePtr_> {
///// エイリアス (Alias) /////
using FileBase_t = ::dtl::storage::FileBaseBin<FileHDR, Matrix_Var_, UniquePtr_>;
friend FileBase_t;
///// 基本処理 /////
int writeFile(char const* filename, int width, int height, int color_num, const float* data) const {
return ::stbi_write_hdr(filename, width, height, color_num, data);
}
public:
///// コンストラクタ (Constructor) /////
using FileBase_t::FileBase_t;
};
}
}
#endif //Included Dungeon Template Library