id
int64
0
755k
file_name
stringlengths
3
109
file_path
stringlengths
13
185
content
stringlengths
31
9.38M
size
int64
31
9.38M
language
stringclasses
1 value
extension
stringclasses
11 values
total_lines
int64
1
340k
avg_line_length
float64
2.18
149k
max_line_length
int64
7
2.22M
alphanum_fraction
float64
0
1
repo_name
stringlengths
6
65
repo_stars
int64
100
47.3k
repo_forks
int64
0
12k
repo_open_issues
int64
0
3.4k
repo_license
stringclasses
9 values
repo_extraction_date
stringclasses
92 values
exact_duplicates_redpajama
bool
2 classes
near_duplicates_redpajama
bool
2 classes
exact_duplicates_githubcode
bool
2 classes
exact_duplicates_stackv2
bool
1 class
exact_duplicates_stackv1
bool
2 classes
near_duplicates_githubcode
bool
2 classes
near_duplicates_stackv1
bool
2 classes
near_duplicates_stackv2
bool
1 class
23,427
CemuDebugLogging.h
cemu-project_Cemu/src/Cemu/Logging/CemuDebugLogging.h
#pragma once // printf-style macros that are only active in non-release builds #ifndef CEMU_DEBUG_ASSERT #define debug_printf(...) static void debugBreakpoint() { } #else #define debug_printf(...) printf(__VA_ARGS__) static void debugBreakpoint() {} #endif
258
C++
.h
9
27.555556
65
0.758065
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,428
CemuLogging.h
cemu-project_Cemu/src/Cemu/Logging/CemuLogging.h
#pragma once extern uint64 s_loggingFlagMask; enum class LogType : sint32 { // note: IDs must be in range 1-64 Force = 63, // always enabled Placeholder = 62, // always disabled APIErrors = 61, // Logs bad parameters or other API usage mistakes or unintended errors in OS libs. Intended for homebrew developers C...
3,952
C++
.h
113
33.088496
155
0.731918
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,429
IAudioAPI.h
cemu-project_Cemu/src/audio/IAudioAPI.h
#pragma once #if BOOST_OS_WINDOWS #include <mmreg.h> #endif class IAudioAPI { friend class GeneralSettings2; public: class DeviceDescription { public: explicit DeviceDescription(std::wstring name) : m_name(std::move(name)) { } virtual ~DeviceDescription() = default; virtual std::wstring GetIdentifier()...
2,260
C++
.h
67
31.328358
184
0.773777
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,430
DirectSoundAPI.h
cemu-project_Cemu/src/audio/DirectSoundAPI.h
#pragma once #define DIRECTSOUND_VERSION 0x0800 #include <mmsystem.h> //#include <mmreg.h> #include <dsound.h> #include "IAudioAPI.h" class DirectSoundAPI : public IAudioAPI { public: class DirectSoundDeviceDescription : public DeviceDescription { public: DirectSoundDeviceDescription(const std::wstring& name, G...
1,843
C++
.h
51
33.921569
114
0.778841
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,431
XAudio27API.h
cemu-project_Cemu/src/audio/XAudio27API.h
#pragma once #define DIRECTSOUND_VERSION 0x0800 #include <mmsystem.h> #include <mmreg.h> #include <dsound.h> #include "IAudioAPI.h" struct IXAudio2; struct IXAudio2Voice; struct IXAudio2MasteringVoice; struct IXAudio2SourceVoice; class XAudio27API : public IAudioAPI { public: class XAudio27DeviceDescription : publ...
1,910
C++
.h
56
31.910714
117
0.778987
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,432
CubebInputAPI.h
cemu-project_Cemu/src/audio/CubebInputAPI.h
#pragma once #include "IAudioInputAPI.h" #include <cubeb/cubeb.h> class CubebInputAPI : public IAudioInputAPI { public: class CubebDeviceDescription : public DeviceDescription { public: CubebDeviceDescription(cubeb_devid devid, std::string device_id, const std::wstring& name) : DeviceDescription(name), m_dev...
1,467
C++
.h
37
37.297297
120
0.771186
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,433
XAudio2API.h
cemu-project_Cemu/src/audio/XAudio2API.h
#pragma once #define DIRECTSOUND_VERSION 0x0800 #include <mmsystem.h> #include <mmreg.h> #include <dsound.h> #include "IAudioAPI.h" struct IXAudio2; struct IXAudio2Voice; struct IXAudio2MasteringVoice; struct IXAudio2SourceVoice; class XAudio2API : public IAudioAPI { public: class XAudio2DeviceDescription : public...
1,977
C++
.h
56
33.125
122
0.780987
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,434
IAudioInputAPI.h
cemu-project_Cemu/src/audio/IAudioInputAPI.h
#pragma once class IAudioInputAPI { friend class GeneralSettings2; public: class DeviceDescription { public: explicit DeviceDescription(std::wstring name) : m_name(std::move(name)) { } virtual ~DeviceDescription() = default; virtual std::wstring GetIdentifier() const = 0; const std::wstring& GetName()...
1,888
C++
.h
52
33.865385
194
0.781508
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,435
audioDebuggerWindow.h
cemu-project_Cemu/src/audio/audioDebuggerWindow.h
#pragma once #include <wx/wx.h> class AudioDebuggerWindow : public wxFrame { public: AudioDebuggerWindow(wxFrame& parent); void OnCloseButton(wxCommandEvent& event); void OnRefreshButton(wxCommandEvent& event); void OnClose(wxCloseEvent& event); void RefreshVoiceList_sndgeneric(); void RefreshVoiceList(); voi...
568
C++
.h
20
26.35
49
0.822222
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,436
CubebAPI.h
cemu-project_Cemu/src/audio/CubebAPI.h
#pragma once #include "IAudioAPI.h" #include <cubeb/cubeb.h> #include <memory> class CubebAPI : public IAudioAPI { public: class CubebDeviceDescription : public DeviceDescription { public: CubebDeviceDescription(cubeb_devid devid, std::string device_id, const std::wstring& name) : DeviceDescription(name), m...
1,437
C++
.h
38
35.5
115
0.770397
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,437
xma2defs.h
cemu-project_Cemu/src/audio/xaudio2_7/xma2defs.h
/*************************************************************************** * * Copyright (c) Microsoft Corporation. All rights reserved. * * File: xma2defs.h * Content: Constants, data types and functions for XMA2 compressed audio. * ***********************************************************************...
32,038
C++
.h
600
48.64
107
0.665805
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
23,439
audiodefs.h
cemu-project_Cemu/src/audio/xaudio2_7/audiodefs.h
/*************************************************************************** * * Copyright (c) Microsoft Corporation. All rights reserved. * * File: audiodefs.h * Content: Basic constants and data types for audio work. * * Remarks: This header file defines all of the audio format constants and * ...
10,644
C++
.h
207
46.89372
230
0.649552
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,440
dxsdkver.h
cemu-project_Cemu/src/audio/xaudio2_7/dxsdkver.h
/*==========================================================================; * * * File: dxsdkver.h * Content: DirectX SDK Version Include File * ****************************************************************************/ #ifndef _DXSDKVER_H_ #define _DXSDKVER_H_ #define _DXSDK_PRODUCT_MAJOR 9 #...
468
C++
.h
14
29.642857
78
0.417778
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,442
resource.h
cemu-project_Cemu/src/resource/resource.h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by cemu.rc // #include "Common/version.h" #define IDI_ICON2 102 #define IDI_ICON3 103 #define IDR_FONTAWESOME 116 // Next default values for new objects // #ifdef APSTUDIO_INVOKED ...
547
C++
.h
18
29.277778
47
0.649621
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
true
false
false
23,443
resources.h
cemu-project_Cemu/src/resource/embedded/resources.h
extern const char* X_GAME_PROFILE_xpm[]; extern const char* M_WND_ICON128_xpm[]; extern const char* X_BOX_xpm[]; extern const char* X_SETTINGS_xpm[]; extern unsigned char PNG_CHECK_YES_png[573]; extern unsigned char PNG_ERROR_png[472]; extern unsigned char PNG_HELP_png[492]; extern unsigned char PNG_REFRESH_png[449]; ...
842
C++
.h
19
43.210526
49
0.800244
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,444
CemuConfig.h
cemu-project_Cemu/src/config/CemuConfig.h
#pragma once #include "ConfigValue.h" #include "XMLConfig.h" #include "util/math/vector2.h" #include "Cafe/Account/Account.h" #include <wx/language.h> #include <wx/intl.h> enum class NetworkService; struct GameEntry { GameEntry() = default; std::wstring rpx_file; std::wstring legacy_name; std::string product_c...
14,600
C++
.h
464
29.189655
204
0.759604
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,445
LaunchSettings.h
cemu-project_Cemu/src/config/LaunchSettings.h
#pragma once #include <optional> #include <string> class LaunchSettings { public: // winmain static bool HandleCommandline(const wchar_t* lpCmdLine); // wmain static bool HandleCommandline(int argc, wchar_t* argv[]); // main (unix) static bool HandleCommandline(int argc, char* argv[]); static bool HandleComma...
1,621
C++
.h
34
45.205882
113
0.755895
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,446
ConfigValue.h
cemu-project_Cemu/src/config/ConfigValue.h
#pragma once #include "Common/enumFlags.h" #include <mutex> #include <atomic> template<typename TType> class ConfigValueAtomic { public: constexpr ConfigValueAtomic() : m_value(TType()), m_init_value(TType()) {} constexpr ConfigValueAtomic(const TType& init_value) : m_value(init_value), m_init_value(init_valu...
6,084
C++
.h
186
30.22043
220
0.718291
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,447
XMLConfig.h
cemu-project_Cemu/src/config/XMLConfig.h
#pragma once #include "util/tinyxml2/tinyxml2.h" #include "Common/FileStream.h" #include "config/ConfigValue.h" #include <string> #include <mutex> class XMLConfigParser { public: XMLConfigParser(tinyxml2::XMLDocument* document) : m_document(document), m_current_element(nullptr), m_is_root(true) {} private: XMLC...
12,340
C++
.h
384
28.877604
125
0.698988
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,448
NetworkSettings.h
cemu-project_Cemu/src/config/NetworkSettings.h
#pragma once #include "ConfigValue.h" #include "XMLConfig.h" enum class NetworkService { Offline, Nintendo, Pretendo, Custom, COUNT = Custom }; struct NetworkConfig { NetworkConfig() { }; NetworkConfig(const NetworkConfig&) = delete; ConfigValue<std::string> networkname; ConfigValue<bool> disa...
3,254
C++
.h
75
40.24
114
0.754425
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,449
ActiveSettings.h
cemu-project_Cemu/src/config/ActiveSettings.h
#pragma once #include <utility> #include "config/CemuConfig.h" #include "config/NetworkSettings.h" // global active settings for fast access (reflects settings from command line and game profile) class ActiveSettings { private: template <typename ...TArgs> static fs::path GetPath(const fs::path& path, std::string_v...
4,950
C++
.h
115
40.66087
131
0.734982
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,450
ChecksumTool.h
cemu-project_Cemu/src/gui/ChecksumTool.h
#pragma once #include <wx/dialog.h> #include "gui/components/wxTitleManagerList.h" #include "Cafe/TitleList/TitleInfo.h" #include <rapidjson/document.h> class wxSetGaugeValue; class ChecksumTool : public wxDialog { public: ChecksumTool(wxWindow* parent, wxTitleManagerList::TitleEntry& entry); ~ChecksumTool(); pri...
1,243
C++
.h
41
28.121951
71
0.787037
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,451
CemuApp.h
cemu-project_Cemu/src/gui/CemuApp.h
#pragma once #include <wx/app.h> class MainWindow; class CemuApp : public wxApp { public: bool OnInit() override; int OnExit() override; void OnAssertFailure(const wxChar* file, int line, const wxChar* func, const wxChar* cond, const wxChar* msg) override; int FilterEvent(wxEvent& event) override; std::vector...
1,035
C++
.h
26
37.692308
120
0.808425
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,452
GettingStartedDialog.h
cemu-project_Cemu/src/gui/GettingStartedDialog.h
#pragma once #include <wx/dialog.h> #include <wx/checkbox.h> #include <wx/filepicker.h> #include <wx/statbmp.h> #include <wx/simplebook.h> #include <wx/stattext.h> #include <wx/panel.h> class GettingStartedDialog : public wxDialog { public: GettingStartedDialog(wxWindow* parent = nullptr); private: wxPanel* Create...
951
C++
.h
39
22.205128
50
0.785161
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,453
TitleManager.h
cemu-project_Cemu/src/gui/TitleManager.h
#pragma once #include <thread> #include <atomic> #include <wx/frame.h> #include <wx/button.h> #include "Cemu/Tools/DownloadManager/DownloadManager.h" #define DOWNLOADMGR_HAS_ACCOUNT_DROPDOWN 0 class wxCheckBox; class wxStaticText; class wxListEvent; class wxSetStatusBarTextEvent; class wxTitleManagerList; class wx...
2,848
C++
.h
81
33.197531
96
0.829989
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,454
MemorySearcherTool.h
cemu-project_Cemu/src/gui/MemorySearcherTool.h
#pragma once #include <mutex> #include <thread> #include <atomic> #include "Cafe/HW/MMU/MMU.h" #include "util/helpers/helpers.h" #include "gui/helpers/wxCustomEvents.h" enum SearchDataType { SearchDataType_None, SearchDataType_String, SearchDataType_Float, SearchDataType_Double, SearchDataType_Int8, SearchData...
6,221
C++
.h
222
25.711712
89
0.720786
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,455
MainWindow.h
cemu-project_Cemu/src/gui/MainWindow.h
#pragma once #include <wx/wx.h> #include <wx/dataview.h> #include <wx/infobar.h> #include "wxcomponents/checkedlistctrl.h" #include "gui/PadViewFrame.h" #include "gui/MemorySearcherTool.h" #include "config/XMLConfig.h" #include "gui/LoggingWindow.h" #include "gui/components/wxGameList.h" #include <future> #include...
6,497
C++
.h
184
33.119565
95
0.804605
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,456
wxgui.h
cemu-project_Cemu/src/gui/wxgui.h
#pragma once #define wxNO_UNSAFE_WXSTRING_CONV 1 #include <wx/wxprec.h> #ifndef WX_PRECOMP #include <wx/wx.h> #endif #include <wx/listctrl.h> #include <wx/notebook.h> #include <wx/panel.h> #include <wx/timer.h> #include <wx/slider.h> #include <wx/stattext.h> #include <wx/textctrl.h> #include <wx/spinctrl.h> #include...
1,074
C++
.h
42
24.357143
60
0.767283
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,457
DownloadGraphicPacksWindow.h
cemu-project_Cemu/src/gui/DownloadGraphicPacksWindow.h
#pragma once #include <atomic> #include <thread> #include <string> #include <memory> #include <wx/timer.h> #include <wx/gauge.h> class DownloadGraphicPacksWindow : public wxDialog { public: DownloadGraphicPacksWindow(wxWindow* parent); ~DownloadGraphicPacksWindow(); const std::string& GetException() const; in...
1,387
C++
.h
46
27.956522
130
0.80633
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,458
LoggingWindow.h
cemu-project_Cemu/src/gui/LoggingWindow.h
#pragma once #include <wx/frame.h> #include <wx/listbox.h> #include <wx/combobox.h> #include "gui/components/wxLogCtrl.h" class wxLogEvent; class LoggingWindow : public wxFrame { public: LoggingWindow(wxFrame* parent); ~LoggingWindow(); static void Log(std::string_view filter, std::string_view message); static ...
1,208
C++
.h
35
32.514286
84
0.749141
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,459
GraphicPacksWindow2.h
cemu-project_Cemu/src/gui/GraphicPacksWindow2.h
#pragma once #include <wx/frame.h> #include <wx/dialog.h> #include <wx/scrolwin.h> #include <wx/infobar.h> #include "wxcomponents/checktree.h" #include "Cafe/GraphicPack/GraphicPack2.h" class wxSplitterWindow; class wxPanel; class wxButton; class wxChoice; class GraphicPacksWindow2 : public wxDialog { public: Gra...
2,081
C++
.h
56
35.089286
85
0.811471
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,460
GameUpdateWindow.h
cemu-project_Cemu/src/gui/GameUpdateWindow.h
#pragma once #include "Cafe/TitleList/GameInfo.h" #include <wx/dialog.h> #include <wx/timer.h> #include <wx/gauge.h> #include <atomic> #include <string> #include <array> #include <memory> // thrown if users doesn't wish to reinstall update/dlc class AbortException : public std::exception {}; class GameUpdateWindow...
1,879
C++
.h
52
34.076923
82
0.753175
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,461
GameProfileWindow.h
cemu-project_Cemu/src/gui/GameProfileWindow.h
#pragma once #include <wx/frame.h> #include <wx/checkbox.h> #include <wx/choice.h> #include <wx/combobox.h> #include <wx/slider.h> #include "Cafe/GameProfile/GameProfile.h" class GameProfileWindow : public wxFrame { public: GameProfileWindow(wxWindow* parent, uint64_t title_id); ~GameProfileWindow(); private: ui...
1,082
C++
.h
37
27.243243
98
0.782188
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,462
wxHelper.h
cemu-project_Cemu/src/gui/wxHelper.h
#pragma once #include <wx/string.h> namespace wxHelper { inline fs::path MakeFSPath(const wxString& str) { auto tmpUtf8 = str.ToUTF8(); auto sv = std::basic_string_view<char8_t>((const char8_t*)tmpUtf8.data(), tmpUtf8.length()); return fs::path(sv); } inline wxString FromUtf8(std:...
1,124
C++
.h
31
32.903226
100
0.713235
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,463
PadViewFrame.h
cemu-project_Cemu/src/gui/PadViewFrame.h
#pragma once #define WM_CREATE_PAD (WM_USER+1) #define WM_DESTROY_PAD (WM_USER+2) wxDECLARE_EVENT(EVT_PAD_CLOSE, wxCommandEvent); wxDECLARE_EVENT(EVT_SET_WINDOW_TITLE, wxCommandEvent); class PadViewFrame : public wxFrame { public: PadViewFrame(wxFrame* parent); ~PadViewFrame(); bool Initialize(); void Initializ...
877
C++
.h
27
30.481481
54
0.808333
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,464
CemuUpdateWindow.h
cemu-project_Cemu/src/gui/CemuUpdateWindow.h
#pragma once #include <wx/dialog.h> #include <wx/stattext.h> #include <wx/gauge.h> #include <wx/timer.h> #include <wx/hyperlink.h> #include <wx/checkbox.h> #include <curl/system.h> class CemuUpdateWindow : public wxDialog { public: CemuUpdateWindow(wxWindow* parent); ~CemuUpdateWindow(); static std::future<bool>...
1,733
C++
.h
58
27.706897
120
0.783654
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,465
GeneralSettings2.h
cemu-project_Cemu/src/gui/GeneralSettings2.h
#pragma once #include <wx/collpane.h> #include <wx/propgrid/propgrid.h> #include <Cafe/Account/Account.h> class wxColourPickerCtrl; wxDECLARE_EVENT(wxEVT_ACCOUNTLIST_REFRESH, wxCommandEvent); class GeneralSettings2 : public wxDialog { public: GeneralSettings2(wxWindow* parent, bool game_launched); ~GeneralSettings...
4,057
C++
.h
97
39.71134
140
0.803757
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,466
guiWrapper.h
cemu-project_Cemu/src/gui/guiWrapper.h
#pragma once #if BOOST_OS_LINUX #include "xcb/xproto.h" #include <gdk/gdkkeysyms.h> #endif #if BOOST_OS_MACOS #include <Carbon/Carbon.h> #endif struct WindowHandleInfo { #if BOOST_OS_WINDOWS std::atomic<HWND> hwnd; #elif BOOST_OS_LINUX enum class Backend { X11, WAYLAND, } backend; // XLIB Display* xl...
4,128
C++
.h
137
28.175182
113
0.756239
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,467
PairingDialog.h
cemu-project_Cemu/src/gui/PairingDialog.h
#pragma once #include <wx/button.h> #include <wx/dialog.h> #include <wx/gauge.h> #include <wx/stattext.h> class PairingDialog : public wxDialog { public: PairingDialog(wxWindow* parent); ~PairingDialog(); private: enum class PairingState { Pairing, Finished, NoBluetoothAvailable, ...
757
C++
.h
31
19.903226
53
0.710709
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,468
InputAPIAddWindow.h
cemu-project_Cemu/src/gui/input/InputAPIAddWindow.h
#pragma once #include "input/api/InputAPI.h" #include <optional> #include <wx/dialog.h> #include <wx/panel.h> #include "gui/helpers/wxCustomData.h" #include "input/api/Controller.h" class wxComboBox; class wxChoice; class wxTextCtrl; using wxAPIType = wxCustomData<InputAPI::Type>; class InputAPIAddWindow : public...
1,608
C++
.h
45
33.644444
109
0.779288
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,469
InputSettings2.h
cemu-project_Cemu/src/gui/input/InputSettings2.h
#pragma once #include <wx/dialog.h> #include <wx/notebook.h> #include <wx/timer.h> #include "input/api/InputAPI.h" #include <boost/signals2/connection.hpp> struct ControllerPage; class ControllerBase; class InputSettings2 : public wxDialog { public: InputSettings2(wxWindow* parent); ~InputSettings2(); private: ...
1,947
C++
.h
49
37.510204
63
0.802561
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,470
ClassicControllerInputPanel.h
cemu-project_Cemu/src/gui/input/panels/ClassicControllerInputPanel.h
#pragma once #include <wx/gbsizer.h> #include "input/emulated/ClassicController.h" #include "gui/input/panels/InputPanel.h" class wxInputDraw; class ClassicControllerInputPanel : public InputPanel { public: ClassicControllerInputPanel(wxWindow* parent); private: wxInputDraw* m_left_draw, * m_right_draw; void ad...
434
C++
.h
13
31.692308
117
0.816867
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,471
ProControllerInputPanel.h
cemu-project_Cemu/src/gui/input/panels/ProControllerInputPanel.h
#pragma once #include <wx/gbsizer.h> #include "input/emulated/ProController.h" #include "gui/input/panels/InputPanel.h" #include "gui/components/wxInputDraw.h" class ProControllerInputPanel : public InputPanel { public: ProControllerInputPanel(wxWindow* parent); void on_timer(const EmulatedControllerPtr& emulated_...
546
C++
.h
14
37.357143
113
0.815939
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,472
InputPanel.h
cemu-project_Cemu/src/gui/input/panels/InputPanel.h
#pragma once #include <wx/panel.h> #include "input/emulated/EmulatedController.h" #include "input/api/Controller.h" #include "gui/wxHelper.h" class ControllerBase; class wxTextCtrl; class wxComboBox; class InputPanel : public wxPanel { public: #if BOOST_OS_WINDOWS const wxColour kKeyColourNormalMode = 0xfafafa; ...
1,472
C++
.h
38
36.763158
118
0.821001
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,473
VPADInputPanel.h
cemu-project_Cemu/src/gui/input/panels/VPADInputPanel.h
#pragma once #include <wx/gbsizer.h> #include "gui/input/panels/InputPanel.h" class wxInputDraw; class wxCheckBox; class VPADInputPanel : public InputPanel { public: VPADInputPanel(wxWindow* parent); void on_timer(const EmulatedControllerPtr& emulated_controller, const ControllerPtr& controller) override; virtua...
788
C++
.h
18
41.944444
137
0.819135
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,474
WiimoteInputPanel.h
cemu-project_Cemu/src/gui/input/panels/WiimoteInputPanel.h
#pragma once #include "gui/input/panels/InputPanel.h" #include "input/emulated/WiimoteController.h" #include <wx/slider.h> class wxCheckBox; class wxGridBagSizer; class wxInputDraw; class WiimoteInputPanel : public InputPanel { public: WiimoteInputPanel(wxWindow* parent); void on_timer(const EmulatedControllerPtr...
1,011
C++
.h
27
35.148148
107
0.813857
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,475
WiimoteControllerSettings.h
cemu-project_Cemu/src/gui/input/settings/WiimoteControllerSettings.h
#pragma once #ifdef SUPPORTS_WIIMOTE #include <wx/dialog.h> #include <wx/timer.h> #include <wx/slider.h> #include "input/api/Controller.h" #include "input/api/Wiimote/NativeWiimoteController.h" class wxStaticBox; class wxStaticText; class wxCheckBox; class wxInputDraw; class WiimoteControllerSettings : public wxDi...
1,486
C++
.h
43
32.511628
123
0.802669
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,476
DefaultControllerSettings.h
cemu-project_Cemu/src/gui/input/settings/DefaultControllerSettings.h
#pragma once #include <wx/dialog.h> #include <wx/timer.h> #include <wx/slider.h> #include "input/api/Controller.h" class wxCheckBox; class wxInputDraw; class DefaultControllerSettings : public wxDialog { public: DefaultControllerSettings(wxWindow* parent, const wxPoint& position, ControllerPtr controller); ~Defau...
1,049
C++
.h
31
31.870968
96
0.789474
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,477
wxDownloadManagerList.h
cemu-project_Cemu/src/gui/components/wxDownloadManagerList.h
#pragma once #include "gui/helpers/wxCustomData.h" #include "config/CemuConfig.h" #include <wx/listctrl.h> #include <boost/optional.hpp> // std::optional doesn't support optional reference inner types yet #include <utility> #include <vector> class wxDownloadManagerList : public wxListCtrl { friend class TitleManag...
4,642
C++
.h
129
33.465116
98
0.777951
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,478
wxProgressDialogManager.h
cemu-project_Cemu/src/gui/components/wxProgressDialogManager.h
#pragma once #include <wx/event.h> #include <wx/progdlg.h> #include <wx/thread.h> #include "util/helpers/Semaphore.h" wxDEFINE_EVENT(wxEVT_CREATE_PROGRESS_DIALOG, wxThreadEvent); wxDEFINE_EVENT(wxEVT_DESTROY_PROGRESS_DIALOG, wxThreadEvent); wxDEFINE_EVENT(wxEVT_UPDATE_PROGRESS_DIALOG, wxThreadEvent); // wrapper for ...
3,584
C++
.h
104
27.182692
146
0.655033
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,479
wxTitleManagerList.h
cemu-project_Cemu/src/gui/components/wxTitleManagerList.h
#pragma once #include "gui/helpers/wxCustomData.h" #include "config/CemuConfig.h" #include <wx/listctrl.h> #include <boost/optional.hpp> // std::optional doesn't support optional reference inner types yet #include <utility> #include <vector> class wxTitleManagerList : public wxListCtrl { friend class TitleManager;...
3,890
C++
.h
116
31.086207
97
0.784036
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,480
wxGameList.h
cemu-project_Cemu/src/gui/components/wxGameList.h
#pragma once #include "config/CemuConfig.h" #include "Cafe/TitleList/TitleId.h" #include <future> #include <mutex> #include <optional> #include <wx/listctrl.h> #include <wx/timer.h> #include <wx/panel.h> #include <Cafe/TitleList/GameInfo.h> #include "util/helpers/Semaphore.h" class wxTitleIdEvent : public wxCommand...
4,188
C++
.h
126
30.888889
90
0.79001
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,481
wxLogCtrl.h
cemu-project_Cemu/src/gui/components/wxLogCtrl.h
#pragma once #include "TextList.h" class wxLogCtrl : public TextList { public: wxLogCtrl(wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style); ~wxLogCtrl(); void SetActiveFilter(const std::string& active_filter); [[nodiscard]] const std::string& GetActiveFilter() const; void SetFi...
1,048
C++
.h
28
35.428571
96
0.772727
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,482
TextList.h
cemu-project_Cemu/src/gui/components/TextList.h
#pragma once #include <wx/wx.h> #include <unordered_map> #include <sstream> #define COLOR_BLACK 0xFF000000 #define COLOR_GREY 0xFFA0A0A0 #define COLOR_LIGHT_GREY 0xFFE0E0E0 #define COLOR_WHITE 0xFFFFFFFF #define COLOR_RED 0xFF0000FF class TextList : public wxControl, public wxScrollHelper { public: v...
2,662
C++
.h
63
40.174603
108
0.788067
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,483
wxInputDraw.h
cemu-project_Cemu/src/gui/components/wxInputDraw.h
#pragma once #include "input/api/ControllerState.h" #include "util/math/vector2.h" #include <wx/window.h> class wxInputDraw : public wxWindow { public: wxInputDraw(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize); ~wxInputDraw(); virtual void OnRender(...
515
C++
.h
17
28.411765
122
0.782077
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,484
wxCreateAccountDialog.h
cemu-project_Cemu/src/gui/dialogs/CreateAccount/wxCreateAccountDialog.h
#pragma once #include <wx/dialog.h> class wxCreateAccountDialog : public wxDialog { public: wxCreateAccountDialog(wxWindow* parent); [[nodiscard]] uint32 GetPersistentId() const; [[nodiscard]] wxString GetMiiName() const; private: class wxTextCtrl* m_persistent_id; class wxTextCtrl* m_mii_name; class wxButton* ...
428
C++
.h
15
26.866667
47
0.788321
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,485
SaveTransfer.h
cemu-project_Cemu/src/gui/dialogs/SaveImport/SaveTransfer.h
#pragma once #include <wx/dialog.h> class wxComboBox; class SaveTransfer : public wxDialog { public: SaveTransfer(wxWindow* parent, uint64 title_id, const wxString& source_account, uint32 source_id); void EndModal(int retCode) override; uint32 GetTargetPersistentId() const { return m_target_id; } private: void...
503
C++
.h
17
27.647059
99
0.787056
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,486
SaveImportWindow.h
cemu-project_Cemu/src/gui/dialogs/SaveImport/SaveImportWindow.h
#pragma once #include <wx/dialog.h> class SaveImportWindow : public wxDialog { public: SaveImportWindow(wxWindow* parent, uint64 title_id); void EndModal(int retCode) override; uint32 GetTargetPersistentId() const { return m_target_id; } private: void OnImport(wxCommandEvent& event); class wxFilePickerCtrl* m...
497
C++
.h
17
27.176471
61
0.788136
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,487
EmulatedUSBDeviceFrame.h
cemu-project_Cemu/src/gui/EmulatedUSBDevices/EmulatedUSBDeviceFrame.h
#pragma once #include <array> #include <wx/dialog.h> #include <wx/frame.h> #include "Cafe/OS/libs/nsyshid/Infinity.h" #include "Cafe/OS/libs/nsyshid/Skylander.h" class wxBoxSizer; class wxCheckBox; class wxFlexGridSizer; class wxNotebook; class wxPanel; class wxStaticBox; class wxString; class wxTextCtrl; class Em...
2,836
C++
.h
86
31.011628
101
0.806216
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,488
OpenGLCanvas.h
cemu-project_Cemu/src/gui/canvas/OpenGLCanvas.h
#pragma once #include <wx/window.h> #include "gui/canvas/IRenderCanvas.h" wxWindow* GLCanvas_Create(wxWindow* parent, const wxSize& size, bool is_main_window); bool GLCanvas_MakeCurrent(bool padView); void GLCanvas_SwapBuffers(bool swapTV, bool swapDRC); bool GLCanvas_HasPadViewOpen();
287
C++
.h
7
40
85
0.810714
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,489
IRenderCanvas.h
cemu-project_Cemu/src/gui/canvas/IRenderCanvas.h
#pragma once #include <wx/wxprec.h> // base class for all render interfaces class IRenderCanvas { public: IRenderCanvas(bool is_main_window) : m_is_main_window(is_main_window) {} protected: bool m_is_main_window; };
222
C++
.h
11
18.636364
39
0.770335
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,490
VulkanCanvas.h
cemu-project_Cemu/src/gui/canvas/VulkanCanvas.h
#pragma once #include "gui/canvas/IRenderCanvas.h" #include <wx/frame.h> #include "Cafe/HW/Latte/Renderer/Vulkan/VulkanAPI.h" #include <set> class VulkanCanvas : public IRenderCanvas, public wxWindow { #if BOOST_OS_LINUX && HAS_WAYLAND std::unique_ptr<class wxWlSubsurface> m_subsurface; #endif public: VulkanCanva...
486
C++
.h
17
26.941176
73
0.790497
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,491
wxControlObject.h
cemu-project_Cemu/src/gui/helpers/wxControlObject.h
#pragma once #include <wx/control.h> class wxControlObject : public wxObject { public: wxControlObject(wxControl* control) : m_control(control) {} template<typename T> T* GetControl() const { static_assert(std::is_base_of<wxControl, T>::value, "T must inherit from wxControl"); return dynamic_cast<T*>(m_con...
964
C++
.h
34
26.117647
87
0.735582
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,492
wxCustomEvents.h
cemu-project_Cemu/src/gui/helpers/wxCustomEvents.h
#pragma once #include <wx/event.h> #include <wx/gauge.h> class wxStatusBar; class wxControl; wxDECLARE_EVENT(wxEVT_REMOVE_ITEM, wxCommandEvent); wxDECLARE_EVENT(wxEVT_SET_TEXT, wxCommandEvent); wxDECLARE_EVENT(wxEVT_ENABLE, wxCommandEvent); class wxSetStatusBarTextEvent; wxDECLARE_EVENT(wxEVT_SET_STATUS_BAR_TEXT, w...
2,500
C++
.h
59
40.322034
178
0.758763
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,493
wxHelpers.h
cemu-project_Cemu/src/gui/helpers/wxHelpers.h
#pragma once #include <wx/control.h> #include <wx/listbase.h> #include <wx/string.h> template <> struct fmt::formatter<wxString> : formatter<string_view> { template <typename FormatContext> auto format(const wxString& str, FormatContext& ctx) const { return formatter<string_view>::format(str.c_str().AsChar(), ct...
2,707
C++
.h
93
27.172043
151
0.735929
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,494
wxWayland.h
cemu-project_Cemu/src/gui/helpers/wxWayland.h
#pragma once #if BOOST_OS_LINUX && HAS_WAYLAND #include <gdk/gdk.h> #include <gdk/gdkwayland.h> #include <gtk/gtk.h> #include <wayland-client.h> #include <wx/wx.h> #include "wayland-viewporter-client-protocol.h" class wxWlSubsurface { static void registry_add_object(void* data, struct wl_registry* registry, uint32_...
3,210
C++
.h
82
36.52439
132
0.740776
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,495
wxLogEvent.h
cemu-project_Cemu/src/gui/helpers/wxLogEvent.h
#pragma once #include <wx/event.h> class wxLogEvent; wxDECLARE_EVENT(EVT_LOG, wxLogEvent); class wxLogEvent : public wxCommandEvent { public: wxLogEvent(const wxString& filter, const wxString& message) : wxCommandEvent(EVT_LOG), m_filter(filter), m_message(message) { } wxLogEvent(const wxLogEvent& event) : ...
665
C++
.h
24
25.541667
84
0.750395
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,496
wxCustomData.h
cemu-project_Cemu/src/gui/helpers/wxCustomData.h
#pragma once #include <wx/clntdata.h> template <typename T> class wxCustomData : public wxClientData { public: wxCustomData() : m_data({}) {} wxCustomData(T data) : m_data(std::move(data)) { } const T& GetData() const { return m_data; } /// <summary> /// obtains ownership of the data /// </summary> /...
1,087
C++
.h
40
25.425
67
0.648987
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,498
checktree.h
cemu-project_Cemu/src/gui/wxcomponents/checktree.h
#ifndef checktree_H_INCLUDED #define checktree_H_INCLUDED // credits to: https://forums.wxwidgets.org/viewtopic.php?t=39582 #include "wx/treectrl.h" #include <map> #define WXMAKINGDLL_CHECKTREE // dll export macros #ifdef WXMAKINGDLL_CHECKTREE #define WXDLLIMPEXP_CHECKTREE WXEXPORT #elif defined(WXUSING_CHECKTR...
3,303
C++
.h
80
35.25
87
0.706508
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,499
ModuleWindow.h
cemu-project_Cemu/src/gui/debugger/ModuleWindow.h
#pragma once class DebuggerWindow2; class ModuleWindow : public wxFrame { public: ModuleWindow(DebuggerWindow2& parent, const wxPoint& main_position, const wxSize& main_size); void OnMainMove(const wxPoint& position, const wxSize& main_size); void OnGameLoaded(); private: void OnLeftDClick(wxMouseEvent& event);...
348
C++
.h
12
27.25
94
0.810241
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,500
DumpCtrl.h
cemu-project_Cemu/src/gui/debugger/DumpCtrl.h
#pragma once #include "gui/components/TextList.h" class DumpCtrl : public TextList { public: DumpCtrl(wxWindow* parent, const wxWindowID& id, const wxPoint& pos, const wxSize& size, long style); void Init(); wxSize DoGetBestSize() const override; protected: void GoToAddressDialog(); void CenterOffset(uint32 of...
806
C++
.h
25
30.2
102
0.795103
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,501
SymbolWindow.h
cemu-project_Cemu/src/gui/debugger/SymbolWindow.h
#pragma once #include "gui/debugger/SymbolCtrl.h" class DebuggerWindow2; class SymbolWindow : public wxFrame { public: SymbolWindow(DebuggerWindow2& parent, const wxPoint& main_position, const wxSize& main_size); void OnMainMove(const wxPoint& position, const wxSize& main_size); void OnGameLoaded(); void OnLef...
463
C++
.h
15
29
94
0.812217
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,502
DebuggerWindow2.h
cemu-project_Cemu/src/gui/debugger/DebuggerWindow2.h
#pragma once #include "gui/debugger/DisasmCtrl.h" #include "config/XMLConfig.h" #include "Cafe/HW/Espresso/Debugger/Debugger.h" #include "Cafe/OS/RPL/rpl.h" #include "Cafe/HW/Espresso/Debugger/GDBStub.h" #include <wx/bitmap.h> #include <wx/frame.h> class BreakpointWindow; class RegisterWindow; class DumpWindow; clas...
3,328
C++
.h
92
34.271739
165
0.814953
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,503
BreakpointWindow.h
cemu-project_Cemu/src/gui/debugger/BreakpointWindow.h
#pragma once #include "gui/wxcomponents/checkedlistctrl.h" class DebuggerWindow2; class BreakpointWindow : public wxFrame { public: BreakpointWindow(DebuggerWindow2& parent, const wxPoint& main_position, const wxSize& main_size); virtual ~BreakpointWindow(); void OnMainMove(const wxPoint& position, const wxSize& ...
655
C++
.h
19
32.631579
98
0.827258
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,504
DisasmCtrl.h
cemu-project_Cemu/src/gui/debugger/DisasmCtrl.h
#pragma once #include "gui/components/TextList.h" class DisasmCtrl : public TextList { public: DisasmCtrl(wxWindow* parent, const wxWindowID& id, const wxPoint& pos, const wxSize& size, long style); void Init(); wxSize DoGetBestSize() const override; void OnUpdateView(); uint32 GetViewBaseAddress() const; std...
1,589
C++
.h
36
42
118
0.807143
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,505
RegisterWindow.h
cemu-project_Cemu/src/gui/debugger/RegisterWindow.h
#pragma once #include "Cafe/HW/Espresso/Debugger/Debugger.h" class DebuggerWindow2; class RegisterWindow : public wxFrame { public: RegisterWindow(DebuggerWindow2& parent, const wxPoint& main_position, const wxSize& main_size); void OnMainMove(const wxPoint& position, const wxSize& main_size); void OnUpdateView()...
735
C++
.h
19
36.789474
105
0.828169
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,506
RegisterCtrl.h
cemu-project_Cemu/src/gui/debugger/RegisterCtrl.h
#pragma once #include "gui/components/TextList.h" #include "Cafe/HW/Espresso/Debugger/Debugger.h" class RegisterCtrl : public TextList { public: RegisterCtrl(wxWindow* parent, const wxWindowID& id, const wxPoint& pos, const wxSize& size, long style); void OnGameLoaded(); protected: void OnDraw(wxDC& dc, sint32 st...
557
C++
.h
15
35.466667
106
0.801115
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,507
SymbolCtrl.h
cemu-project_Cemu/src/gui/debugger/SymbolCtrl.h
#pragma once #include <wx/listctrl.h> class SymbolListCtrl : public wxListCtrl { public: SymbolListCtrl(wxWindow* parent, const wxWindowID& id, const wxPoint& pos, const wxSize& size); void OnGameLoaded(); void ChangeListFilter(std::string filter); private: struct SymbolItem { SymbolItem() = default; ...
763
C++
.h
23
30.391304
162
0.770805
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,508
DumpWindow.h
cemu-project_Cemu/src/gui/debugger/DumpWindow.h
#pragma once #include "gui/debugger/DumpCtrl.h" class DebuggerWindow2; class DumpWindow : public wxFrame { public: DumpWindow(DebuggerWindow2& parent, const wxPoint& main_position, const wxSize& main_size); void OnMainMove(const wxPoint& position, const wxSize& main_size); void OnGameLoaded(); private: wxScrol...
376
C++
.h
13
27.230769
92
0.805014
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,509
DebugPPCThreadsWindow.h
cemu-project_Cemu/src/gui/windows/PPCThreadsViewer/DebugPPCThreadsWindow.h
#pragma once #include <wx/wx.h> class DebugPPCThreadsWindow: public wxFrame { public: DebugPPCThreadsWindow(wxFrame& parent); ~DebugPPCThreadsWindow(); void OnCloseButton(wxCommandEvent& event); void OnRefreshButton(wxCommandEvent& event); void OnClose(wxCloseEvent& event); void RefreshThreadList(); void OnTh...
841
C++
.h
25
30.96
101
0.796778
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,510
TextureRelationWindow.h
cemu-project_Cemu/src/gui/windows/TextureRelationViewer/TextureRelationWindow.h
#pragma once #include <wx/wx.h> class TextureRelationViewerWindow : public wxFrame { public: TextureRelationViewerWindow(wxFrame& parent); ~TextureRelationViewerWindow(); void OnCloseButton(wxCommandEvent& event); void OnRefreshButton(wxCommandEvent& event); void OnCheckbox(wxCommandEvent& event); void OnClose...
856
C++
.h
22
36.909091
162
0.843826
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,511
CafeSystem.h
cemu-project_Cemu/src/Cafe/CafeSystem.h
#pragma once #include "Cafe/OS/RPL/rpl.h" #include "util/helpers/Semaphore.h" #include "Cafe/TitleList/TitleId.h" #include "config/CemuConfig.h" enum class CosCapabilityBits : uint64; enum class CosCapabilityGroup : uint32; namespace CafeSystem { class SystemImplementation { public: virtual void CafeRecreateCanv...
1,668
C++
.h
49
31.857143
107
0.821184
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,512
fscDeviceHostFS.h
cemu-project_Cemu/src/Cafe/Filesystem/fscDeviceHostFS.h
#include "Cafe/Filesystem/fsc.h" class FSCVirtualFile_Host : public FSCVirtualFile { public: static FSCVirtualFile* OpenFile(const fs::path& path, FSC_ACCESS_FLAG accessFlags, sint32& fscStatus); ~FSCVirtualFile_Host() override; sint32 fscGetType() override; uint32 fscDeviceHostFSFile_getFileSize(); uint64 fsc...
993
C++
.h
28
33.535714
103
0.778125
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,513
fsc.h
cemu-project_Cemu/src/Cafe/Filesystem/fsc.h
#pragma once struct FSCVirtualFile; #define FSC_TYPE_INVALID (0) #define FSC_TYPE_FILE (1) #define FSC_TYPE_DIRECTORY (2) #define FSC_QUERY_SIZE (1) // file size, 0 for directories #define FSC_QUERY_WRITEABLE (2) // non-zero if file is writeable, else 0 enum class FSC_ACCESS_FLAG : uint8 { NONE = ...
6,046
C++
.h
172
33.127907
178
0.767107
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,514
fstUtil.h
cemu-project_Cemu/src/Cafe/Filesystem/FST/fstUtil.h
#pragma once #include <wchar.h> #include <boost/container/small_vector.hpp> #include "../fsc.h" // path parser and utility class for Wii U paths // optimized to be allocation-free for common path lengths class FSCPath { struct PathNode { PathNode(uint16 offset, uint16 len) : offset(offset), len(len) {}; uint1...
9,135
C++
.h
331
24.540785
150
0.680968
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,515
FST.h
cemu-project_Cemu/src/Cafe/Filesystem/FST/FST.h
#pragma once #include "Cemu/ncrypto/ncrypto.h" #include "openssl/evp.h" struct FSTFileHandle { friend class FSTVolume; private: uint32 m_fstIndex; }; struct FSTDirectoryIterator { friend class FSTVolume; const FSTFileHandle& GetDirHandle() const { return dirHandle; } private: FSTFileHandle dirHandle; ui...
9,754
C++
.h
290
30.648276
205
0.732044
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,516
WUHBReader.h
cemu-project_Cemu/src/Cafe/Filesystem/WUHB/WUHBReader.h
#pragma once #include <Common/FileStream.h> #include "RomFSStructs.h" class WUHBReader { public: static WUHBReader* FromPath(const fs::path& path); romfs_direntry_t GetDirEntry(uint32 offset) const; romfs_fentry_t GetFileEntry(uint32 offset) const; uint64 GetFileSize(uint32 entryOffset) const; uint64 ReadFrom...
1,338
C++
.h
36
34.972222
95
0.78577
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,517
RomFSStructs.h
cemu-project_Cemu/src/Cafe/Filesystem/WUHB/RomFSStructs.h
#pragma once struct romfs_header_t { uint32 header_magic; uint32be header_size; uint64be dir_hash_table_ofs; uint64be dir_hash_table_size; uint64be dir_table_ofs; uint64be dir_table_size; uint64be file_hash_table_ofs; uint64be file_hash_table_size; uint64be file_table_ofs; uint64be file_table_size; uint64be...
1,022
C++
.h
36
26.583333
107
0.784114
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,518
wud.h
cemu-project_Cemu/src/Cafe/Filesystem/WUD/wud.h
#pragma once struct wuxHeader_t { unsigned int magic0; unsigned int magic1; unsigned int sectorSize; unsigned long long uncompressedSize; unsigned int flags; }; struct wud_t { class FileStream* fs; long long uncompressedSize; bool isCompressed; // data used when compressed unsigned int sectorSize; u...
818
C++
.h
29
26.586207
91
0.779618
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,519
rpl_debug_symbols.h
cemu-project_Cemu/src/Cafe/OS/RPL/rpl_debug_symbols.h
#pragma once #include <map> enum RplDebugSymbolType : uint8 { RplDebugSymbolComment = 0, }; struct rplDebugSymbolBase { RplDebugSymbolType type; rplDebugSymbolBase* next; }; struct rplDebugSymbolComment : rplDebugSymbolBase { std::wstring comment; }; void rplDebugSymbol_createComment(MPTR address, const wchar_...
469
C++
.h
18
24.611111
72
0.832215
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,520
rpl.h
cemu-project_Cemu/src/Cafe/OS/RPL/rpl.h
#pragma once struct RPLModule; #define RPL_INVALID_HANDLE 0xFFFFFFFF void RPLLoader_InitState(); void RPLLoader_ResetState(); uint8* RPLLoader_AllocateTrampolineCodeSpace(sint32 size); MPTR RPLLoader_AllocateCodeSpace(uint32 size, uint32 alignment); uint32 RPLLoader_GetMaxCodeOffset(); uint32 RPLLoader_GetDataAl...
1,851
C++
.h
36
49.888889
120
0.845768
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,521
rpl_symbol_storage.h
cemu-project_Cemu/src/Cafe/OS/RPL/rpl_symbol_storage.h
struct RPLStoredSymbol { MPTR address; void* libName; void* symbolName; uint32 flags; }; void rplSymbolStorage_init(); void rplSymbolStorage_unloadAll(); RPLStoredSymbol* rplSymbolStorage_store(const char* libName, const char* symbolName, MPTR address); void rplSymbolStorage_remove(RPLStoredSymbol* storedSymbol); ...
717
C++
.h
17
40.882353
99
0.852647
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,522
rpl_structs.h
cemu-project_Cemu/src/Cafe/OS/RPL/rpl_structs.h
#pragma once #include "util/ChunkedHeap/ChunkedHeap.h" #define RPL_MODULE_NAME_LENGTH 64 #define RPL_MODULE_PATH_LENGTH 256 // types #define SHT_RPL_EXPORTS (0x80000001) #define SHT_RPL_IMPORTS (0x80000002) #define SHT_RPL_CRCS (0x80000003) #define SHT_RPL_FILEINFO (0x80000004) #define SHT_PROGBITS (0x0000...
6,744
C++
.h
202
31.420792
93
0.745578
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,523
nn_common.h
cemu-project_Cemu/src/Cafe/OS/libs/nn_common.h
#pragma once using nnResult = uint32; inline bool NN_RESULT_IS_SUCCESS(nnResult r) { return (r & 0x80000000) == 0; } inline bool NN_RESULT_IS_FAILURE(nnResult r) { return (r & 0x80000000) != 0; } // any level with MSB set is considered an error #define NN_RESULT_LEVEL_FATAL (0x7) // 111 #define NN_RESULT_LEVEL_...
3,518
C++
.h
95
34.957895
167
0.722173
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,524
erreula.h
cemu-project_Cemu/src/Cafe/OS/libs/erreula/erreula.h
#pragma once namespace nn { namespace erreula { void render(bool mainWindow); void load(); } }
108
C++
.h
9
9.555556
31
0.734043
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,525
nn_ndm.h
cemu-project_Cemu/src/Cafe/OS/libs/nn_ndm/nn_ndm.h
namespace nn { namespace ndm { void load(); } }
53
C++
.h
7
5.857143
14
0.673913
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,526
nn_act.h
cemu-project_Cemu/src/Cafe/OS/libs/nn_act/nn_act.h
#pragma once #include "Cafe/IOSU/legacy/iosu_act.h" struct independentServiceToken_t { /* +0x000 */ char token[0x201]; }; static_assert(sizeof(independentServiceToken_t) == 0x201); // todo - verify size namespace nn { namespace act { uint32 Initialize(); uint32 GetPersistentIdEx(uint8 slot); uint32 GetUuidEx(ui...
901
C++
.h
27
31.518519
126
0.80485
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,527
nn_nim.h
cemu-project_Cemu/src/Cafe/OS/libs/nn_nim/nn_nim.h
#pragma once namespace nn { namespace nim { void load(); } }
66
C++
.h
8
6.625
14
0.706897
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,528
H264DecInternal.h
cemu-project_Cemu/src/Cafe/OS/libs/h264_avc/H264DecInternal.h
#pragma once #include "util/helpers/Semaphore.h" #include "Cafe/OS/libs/coreinit/coreinit_Thread.h" #include "Cafe/OS/libs/coreinit/coreinit_SysHeap.h" #include "Cafe/OS/libs/h264_avc/parser/H264Parser.h" namespace H264 { class H264DecoderBackend { protected: struct DataToDecode { uint8* m_data; uint3...
3,746
C++
.h
118
28.144068
138
0.736142
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
23,529
H264Parser.h
cemu-project_Cemu/src/Cafe/OS/libs/h264_avc/parser/H264Parser.h
#pragma once /* stream parsers */ class RBSPInputBitstream { public: RBSPInputBitstream() {}; RBSPInputBitstream(uint8* stream, uint32 length) { this->streamPtr = stream; this->streamLength = length; if (streamLength >= 1) currentRBSPByte = streamPtr[0]; else currentRBSPByte = 0; errorFlag = false...
11,648
C++
.h
455
22.92967
190
0.720428
cemu-project/Cemu
7,119
558
254
MPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false