Skip to content

Commit 2233fc0

Browse files
feat(xam): added an InXenia function
1 parent b503dcc commit 2233fc0

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

examples/Xam.md

+12
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,15 @@ void Init()
110110
XexUtils::Log::Print("Console is not a devkit");
111111
}
112112
```
113+
114+
Detect if the code is running in [Xenia](https://xenia.jp/):
115+
116+
```C++
117+
void Init()
118+
{
119+
if (XexUtils::Xam::InXenia())
120+
XexUtils::Log::Print("Code is running in Xenia");
121+
else
122+
XexUtils::Log::Print("Code is not running in Xenia");
123+
}
124+
```

src/Xam_.cpp

+18-2
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,24 @@ HRESULT MountHdd()
146146

147147
bool IsDevkit()
148148
{
149-
// Read a 32-bit unsigned int at 0x8E038610 and if the 16th is NOT set, the console is a devkit
150-
return !(Memory::Read<uint32_t>(0x8E038610) & (1 << 15));
149+
// Read a 32-bit unsigned int at 0x8E038610 and if the 16th is NOT set, the console is a devkit.
150+
// This bit is not set while running in Xenia so make sure that's not the case
151+
return !(Memory::Read<uint32_t>(0x8E038610) & (1 << 15)) && !InXenia();
152+
}
153+
154+
bool InXenia()
155+
{
156+
// Inspired by this
157+
// https://github.com/RBEnhanced/RB3Enhanced/blob/master/source/xbox360.c#L16
158+
159+
void *xamFirstExport = Memory::ResolveFunction("xam.xex", 1);
160+
#ifndef NDEBUG
161+
if (xamFirstExport == nullptr)
162+
DebugPrint("[XexUtils][Xam]: Could not find the first function exported by xam.xex, this should not happen.");
163+
#endif
164+
165+
// If Xam is not in the typical memory address space, we're in an emulator
166+
return reinterpret_cast<uintptr_t>(xamFirstExport) >> 24 != 0x81;
151167
}
152168

153169
}

src/Xam_.h

+2
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,7 @@ HRESULT MountHdd();
9999

100100
bool IsDevkit();
101101

102+
bool InXenia();
103+
102104
}
103105
}

0 commit comments

Comments
 (0)