-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruntimeconfig.h
More file actions
181 lines (144 loc) · 5.14 KB
/
runtimeconfig.h
File metadata and controls
181 lines (144 loc) · 5.14 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
Copyright (C) 2009–2014 jakago
Copyright (C) 2018–2026 CSReviser Team
This file is part of CaptureStream2, a recorder that supports HLS for
NHK radio language courses.
CaptureStream2 is a modified version of CaptureStream, originally
developed by jakago.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/gpl-2.0.html>.
*/
#pragma once
#include <QString>
#include <QVector>
#include <QMap>
#include "guistate.h"
class Settings;
class GuiState;
class CliOptions;
class RuntimeConfig
{
public:
RuntimeConfig();
// ====== 設定適用(上書き順に呼ぶ) ======
void applySettings(const Settings& s); // 永続値
void applyGui(const GuiState& g); // GUI上書き
void applyCommandLine(const CliOptions& cli); // CLI最終上書き
// ====== Getter(読み取り専用) ======
bool flag(const QString& key) const;
QString saveFolder() const;
QString ffmpegFolder() const;
QString audioExtension() const;
QString titleFormatAt(int index) const;
QString fileNameFormatAt(int index) const;
QVector<QString> cliProgramIds() const;
// ====== Program ======
enum class Category {
English,
Optional,
Spec
};
struct ProgramEntry {
bool checked = false;
QString id;
QString label;
Category category;
};
QVector<ProgramEntry> allPrograms() const;
QVector<ProgramEntry> checkedPrograms() const;
QVector<QString> checkedProgramIds() const;
// ===== 実行時に使う番組データ =====
struct RuntimeProgram {
QString id; // 実際に使用する番組ID
QString label; // 実際に使用するボタンラベル
bool checked; // 実行対象かどうか
}; // ===== 実行時の最終値 =====
QVector<RuntimeProgram> english;
QVector<RuntimeProgram> optional;
QVector<RuntimeProgram> spec;
std::vector<bool> checkBox;
private:
// ====== 確定済みスナップショット ======
QString m_saveFolder;
QString m_ffmpegFolder;
QString m_audioExtension;
QVector<QString> m_titleFormat;
QVector<QString> m_fileNameFormat;
QMap<QString, bool> m_flags;
QVector<ProgramEntry> m_programs;
QVector<QString> m_cliProgramIds;
};
/*
#pragma once
#include <QString>
#include <QStringList>
#include <QMap>
#include "constants.h"
#include "settings.h"
#include "guistate.h"
#include "clioptions.h"
// ===== 実行時に使う番組データ =====
struct RuntimeProgram {
QString id; // 実際に使用する番組ID
QString label; // 実際に使用するボタンラベル
bool checked; // 実行対象かどうか
};
class RuntimeConfig
{
public:
RuntimeConfig();
// Settings → RuntimeConfig へコピー
void applySettings(const Settings &s);
// GUI オプションで上書き
void applyGui(const GuiState& g);
// CLI オプションで上書き
void applyCommandLine(const CliOptions &cli);
// ===== 実行時の最終値 =====
QVector<RuntimeProgram> english;
QVector<RuntimeProgram> optional;
QVector<RuntimeProgram> spec;
std::vector<bool> checkBox;
// bool checkBox[Constants::getFeatureCount];
// ===== その他設定 =====
QString saveFolder;
QString ffmpegFolder;
QString audioExtension;
// ===== GUI: CustomizeDialog =====
QVector<QString> titleFormat;
QVector<QString> fileNameFormat;
// ===== CLI: 録画設定 =====
std::optional<QString> cliTitleTagFormat; // -t
std::optional<QString> cliFileNameFormat; // -f
std::optional<QString> cliOutputFolder; // -o
std::optional<QString> cliExtension; // -e
std::vector<QString> cliProgramIds;
// 最新番組一覧(ProgramDefinition に変更)
QMap<QString, Constants::ProgramDefinition> latestProgramMap;
// ===== flags(GUI + CLI 統合)=====
QMap<QString, bool> flags;
void setFlag(const QString &key, bool value);
bool flag(const QString &key) const;
struct ProgramEntry
{
bool checked; // 有効かどうか
QString id; // 実行に使う ID
QString label; // 表示用ラベル
QString category; // "english" / "optional" / "spec"
};
QVector<ProgramEntry> allPrograms() const;
QVector<ProgramEntry> checkedPrograms() const;
void set(const QString& key, const QString& value);
void set(const QString& key, bool value);
private:
// ===== Flag(チェックボックス、CLIオプションなど)設定 =====
QHash<QString, QVariant> m_overrides; // 例:CLI 上書き用
};
*/