author | František Kučera <franta-hg@frantovo.cz> |
Sun, 03 Dec 2023 00:57:54 +0100 | |
branch | v_0 |
changeset 13 | 82bb4fe2fd4a |
parent 6 | fd93a46db15b |
permissions | -rw-r--r-- |
0 | 1 |
/** |
2 |
* ShaderShark |
|
3 |
* Copyright © 2023 František Kučera (Frantovo.cz, GlobalCode.info) |
|
4 |
* |
|
5 |
* This program is free software: you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation, version 3 of the License. |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 |
*/ |
|
17 |
||
18 |
#pragma once |
|
19 |
||
20 |
#include <string> |
|
21 |
||
22 |
#include <X11/X.h> |
|
23 |
||
24 |
class Configuration { |
|
25 |
public: |
|
26 |
||
27 |
class File { |
|
28 |
public: |
|
29 |
std::string fileName; |
|
30 |
}; |
|
31 |
||
32 |
class Texture : public File { |
|
33 |
}; |
|
34 |
||
35 |
class Shader : public File { |
|
6
fd93a46db15b
support custom shaders
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
36 |
public: |
fd93a46db15b
support custom shaders
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
37 |
|
fd93a46db15b
support custom shaders
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
38 |
std::string type; |
0 | 39 |
|
6
fd93a46db15b
support custom shaders
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
40 |
Shader(const std::string& fileName, const std::string& type) : |
fd93a46db15b
support custom shaders
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
41 |
File(fileName), type(type) { |
fd93a46db15b
support custom shaders
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
42 |
} |
0 | 43 |
|
44 |
}; |
|
45 |
||
46 |
// TODO: support loading whole directory and monitoring using inotify |
|
47 |
std::vector<Texture> textures; |
|
6
fd93a46db15b
support custom shaders
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
48 |
std::vector<Shader> shaders; |
0 | 49 |
|
50 |
unsigned long backgroundColor = (0x33 << 16 | 0x33 << 8 | 0x33); |
|
51 |
Window rootWindow = 0; |
|
52 |
}; |