| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2009 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2010-02-19 17:05:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 13:54:46 -05:00
										 |  |  | #pragma once
 | 
					
						
							| 
									
										
										
										
											2010-02-19 17:05:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-02 22:47:04 -04:00
										 |  |  | #include <algorithm>
 | 
					
						
							| 
									
										
										
										
											2014-02-20 04:11:52 +01:00
										 |  |  | #include <cstdio>
 | 
					
						
							|  |  |  | #include <cstring>
 | 
					
						
							| 
									
										
										
										
											2010-02-19 17:05:26 +00:00
										 |  |  | #include <string>
 | 
					
						
							|  |  |  | #include <vector>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-26 17:13:07 -04:00
										 |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							|  |  |  | #include "Common/Logging/Log.h"
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #include "Common/MsgHandler.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-06 21:59:02 +01:00
										 |  |  | #include "Common/NandPaths.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 18:00:22 -05:00
										 |  |  | namespace File | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | class IOFile; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-19 17:05:26 +00:00
										 |  |  | // This class is meant to edit the values in a given Wii SYSCONF file
 | 
					
						
							|  |  |  | // It currently does not add/remove/rearrange sections,
 | 
					
						
							|  |  |  | // instead only modifies exiting sections' data
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SYSCONF_SIZE 0x4000
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum SysconfType | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   Type_BigArray = 1, | 
					
						
							|  |  |  |   Type_SmallArray, | 
					
						
							|  |  |  |   Type_Byte, | 
					
						
							|  |  |  |   Type_Short, | 
					
						
							|  |  |  |   Type_Long, | 
					
						
							| 
									
										
										
										
											2016-10-02 11:52:57 +02:00
										 |  |  |   Type_LongLong, | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   Type_Bool | 
					
						
							| 
									
										
										
										
											2010-02-19 17:05:26 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct SSysConfHeader | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   char version[4]; | 
					
						
							|  |  |  |   u16 numEntries; | 
					
						
							| 
									
										
										
										
											2010-02-19 17:05:26 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct SSysConfEntry | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   u16 offset; | 
					
						
							|  |  |  |   SysconfType type; | 
					
						
							|  |  |  |   u8 nameLength; | 
					
						
							|  |  |  |   char name[32]; | 
					
						
							|  |  |  |   u16 dataLength; | 
					
						
							|  |  |  |   u8* data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   template <class T> | 
					
						
							|  |  |  |   T GetData() | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     return *(T*)data; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   bool GetArrayData(u8* dest, u16 destSize) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     if (dest && destSize >= dataLength) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       memcpy(dest, data, dataLength); | 
					
						
							|  |  |  |       return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   bool SetArrayData(u8* buffer, u16 bufferSize) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     if (buffer) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       memcpy(data, buffer, std::min<u16>(bufferSize, dataLength)); | 
					
						
							|  |  |  |       return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-02-19 17:05:26 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SysConf | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-01-06 21:59:02 +01:00
										 |  |  |   SysConf(Common::FromWhichRoot root_type); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   ~SysConf(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   bool IsValid() { return m_IsValid; } | 
					
						
							|  |  |  |   template <class T> | 
					
						
							|  |  |  |   T GetData(const char* sectionName) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     if (!m_IsValid) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       PanicAlertT("Trying to read from invalid SYSCONF"); | 
					
						
							|  |  |  |       return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     std::vector<SSysConfEntry>::iterator index = m_Entries.begin(); | 
					
						
							|  |  |  |     for (; index < m_Entries.end() - 1; ++index) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       if (strcmp(index->name, sectionName) == 0) | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (index == m_Entries.end() - 1) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       PanicAlertT("Section %s not found in SYSCONF", sectionName); | 
					
						
							|  |  |  |       return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return index->GetData<T>(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   bool GetArrayData(const char* sectionName, u8* dest, u16 destSize) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     if (!m_IsValid) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       PanicAlertT("Trying to read from invalid SYSCONF"); | 
					
						
							|  |  |  |       return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     std::vector<SSysConfEntry>::iterator index = m_Entries.begin(); | 
					
						
							|  |  |  |     for (; index < m_Entries.end() - 1; ++index) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       if (strcmp(index->name, sectionName) == 0) | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (index == m_Entries.end() - 1) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       PanicAlertT("Section %s not found in SYSCONF", sectionName); | 
					
						
							|  |  |  |       return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return index->GetArrayData(dest, destSize); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   bool SetArrayData(const char* sectionName, u8* buffer, u16 bufferSize) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     if (!m_IsValid) | 
					
						
							|  |  |  |       return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     std::vector<SSysConfEntry>::iterator index = m_Entries.begin(); | 
					
						
							|  |  |  |     for (; index < m_Entries.end() - 1; ++index) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       if (strcmp(index->name, sectionName) == 0) | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (index == m_Entries.end() - 1) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       PanicAlertT("Section %s not found in SYSCONF", sectionName); | 
					
						
							|  |  |  |       return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return index->SetArrayData(buffer, bufferSize); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   template <class T> | 
					
						
							|  |  |  |   bool SetData(const char* sectionName, T newValue) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     if (!m_IsValid) | 
					
						
							|  |  |  |       return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     std::vector<SSysConfEntry>::iterator index = m_Entries.begin(); | 
					
						
							|  |  |  |     for (; index < m_Entries.end() - 1; ++index) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       if (strcmp(index->name, sectionName) == 0) | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (index == m_Entries.end() - 1) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       PanicAlertT("Section %s not found in SYSCONF", sectionName); | 
					
						
							|  |  |  |       return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *(T*)index->data = newValue; | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   bool Save(); | 
					
						
							|  |  |  |   bool SaveToFile(const std::string& filename); | 
					
						
							|  |  |  |   bool LoadFromFile(const std::string& filename); | 
					
						
							|  |  |  |   bool Reload(); | 
					
						
							| 
									
										
										
										
											2017-01-06 21:59:02 +01:00
										 |  |  |   void UpdateLocation(Common::FromWhichRoot root_type); | 
					
						
							| 
									
										
										
										
											2011-03-03 00:07:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-19 17:05:26 +00:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2017-01-11 18:00:22 -05:00
										 |  |  |   bool LoadFromFileInternal(File::IOFile&& file); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   void GenerateSysConf(); | 
					
						
							|  |  |  |   void Clear(); | 
					
						
							| 
									
										
										
										
											2017-01-06 21:59:02 +01:00
										 |  |  |   void ApplySettingsFromMovie(); | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   std::string m_Filename; | 
					
						
							|  |  |  |   std::string m_FilenameDefault; | 
					
						
							|  |  |  |   std::vector<SSysConfEntry> m_Entries; | 
					
						
							| 
									
										
										
										
											2016-09-25 19:19:20 +02:00
										 |  |  |   bool m_IsValid = false; | 
					
						
							| 
									
										
										
										
											2010-02-19 17:05:26 +00:00
										 |  |  | }; |