blob: 9824b42d6946f17420dcba2aa130c81c39b48928 (
plain)
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
|
#pragma once
#include "Utils/DebugConsole.h"
class AppState
{
bool coInit = false;
CRegKey registryKey;
CIcon appIcon;
public:
struct ModelSource
{
CString path;
bool found = false;
Whisper::eModelImplementation impl = (Whisper::eModelImplementation)0;
uint64_t sizeInBytes = 0;
};
ModelSource source;
DebugConsole console;
CComPtr<Whisper::iMediaFoundation> mediaFoundation;
CComPtr<Whisper::iModel> model;
~AppState();
// Setup the initial things
HRESULT startup();
HRESULT findModelSource();
HRESULT saveModelSource();
uint32_t languageRead();
void languageWrite( uint32_t key );
CString stringLoad( LPCTSTR name );
void stringStore( LPCTSTR name, LPCTSTR value );
uint32_t dwordLoad( LPCTSTR name, uint32_t fallback );
void dwordStore( LPCTSTR name, uint32_t value );
bool automaticallyLoadModel = true;
void lastScreenSave( HRESULT code );
HRESULT lastScreenLoad();
void setupIcon( CWindow* wnd );
uint32_t gpuFlagsLoad();
void gpuFlagsStore( uint32_t flags );
};
constexpr HRESULT SCREEN_MODEL = 1;
constexpr HRESULT SCREEN_TRANSCRIBE = 2;
constexpr HRESULT SCREEN_CAPTURE = 3;
|