reorganize the TestSuite and add VS support
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1881 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
acc062a2c1
commit
93d12069cb
|
@ -0,0 +1,84 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="9.00"
|
||||||
|
Name="ARAM"
|
||||||
|
ProjectGUID="{E50732C5-038A-42F7-8C95-8C02A4E2ADA6}"
|
||||||
|
RootNamespace="TestSuite"
|
||||||
|
Keyword="MakeFileProj"
|
||||||
|
TargetFrameworkVersion="196613"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_aram.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_aram.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\source\dolphintest_aram.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -15,6 +15,8 @@ void *Initialise();
|
||||||
#define NUM_BLOCKS 10
|
#define NUM_BLOCKS 10
|
||||||
u32 aram_blocks[NUM_BLOCKS];
|
u32 aram_blocks[NUM_BLOCKS];
|
||||||
u32 start_addr = -1;
|
u32 start_addr = -1;
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
|
|
||||||
xfb = Initialise();
|
xfb = Initialise();
|
||||||
|
@ -23,7 +25,7 @@ int main(int argc, char **argv) {
|
||||||
PAD_ScanPads();
|
PAD_ScanPads();
|
||||||
VIDEO_ClearFrameBuffer(rmode, xfb, 0);
|
VIDEO_ClearFrameBuffer(rmode, xfb, 0);
|
||||||
|
|
||||||
std::cout << "Aram is " << (AR_GetDMAStatus() ? "In Progress" : "Idle") << std::endl;
|
std::cout << "Aram is " << (AR_GetDMAStatus() ? "In Progress" : "Idle") << std::endl;
|
||||||
std::cout << "Aram Start is 0x" << std::setbase(16) << start_addr << ", Allocated 0x" << AR_GetSize() << " Of memory" << std::setbase(10) << std::endl;
|
std::cout << "Aram Start is 0x" << std::setbase(16) << start_addr << ", Allocated 0x" << AR_GetSize() << " Of memory" << std::setbase(10) << std::endl;
|
||||||
std::cout << "Internal Size is 0x" << std::setbase(16) << AR_GetInternalSize() << std::setbase(10) << std::endl;
|
std::cout << "Internal Size is 0x" << std::setbase(16) << AR_GetInternalSize() << std::setbase(10) << std::endl;
|
||||||
VIDEO_WaitVSync();
|
VIDEO_WaitVSync();
|
|
@ -0,0 +1,84 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="9.00"
|
||||||
|
Name="AX"
|
||||||
|
ProjectGUID="{9F053346-A33D-4E4F-874E-CBA1AF809FC3}"
|
||||||
|
RootNamespace="TestSuite"
|
||||||
|
Keyword="MakeFileProj"
|
||||||
|
TargetFrameworkVersion="196613"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_ax.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_ax.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\source\dolphintest_ax.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -11,6 +11,8 @@ static void *xfb = NULL;
|
||||||
static GXRModeObj *rmode = NULL;
|
static GXRModeObj *rmode = NULL;
|
||||||
|
|
||||||
void *Initialise();
|
void *Initialise();
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
|
|
||||||
xfb = Initialise();
|
xfb = Initialise();
|
|
@ -1,8 +0,0 @@
|
||||||
SUBDIRS:= `ls | egrep -v '^(CVS)$$'`
|
|
||||||
|
|
||||||
all:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done;
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done;
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
<Project name="template"><MagicFolder excludeFolders="CVS;.svn" filter="*.c;*.cpp;*.h" name="source" path="source\"><File path="template.c"></File></MagicFolder><MagicFolder excludeFolders="CVS;.svn" filter="*.h" name="include" path="include\"></MagicFolder><File path="Makefile"></File></Project>
|
|
|
@ -1 +0,0 @@
|
||||||
<pd><ViewState><e p="template" x="true"></e><e p="template\source" x="true"></e></ViewState></pd>
|
|
|
@ -1,8 +0,0 @@
|
||||||
SUBDIRS:= `ls | egrep -v '^(CVS)$$'`
|
|
||||||
|
|
||||||
all:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done;
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done;
|
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
int main()
|
|
||||||
{
|
|
||||||
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
<Project name="template"><MagicFolder excludeFolders="CVS;.svn" filter="*.c;*.cpp;*.h" name="source" path="source\"><File path="template.c"></File></MagicFolder><MagicFolder excludeFolders="CVS;.svn" filter="*.h" name="include" path="include\"></MagicFolder><File path="Makefile"></File></Project>
|
|
|
@ -1 +0,0 @@
|
||||||
<pd><ViewState><e p="template" x="true"></e><e p="template\source" x="true"></e></ViewState></pd>
|
|
|
@ -1 +0,0 @@
|
||||||
<Project name="template"><MagicFolder excludeFolders="CVS;.svn" filter="*.c;*.cpp;*.h" name="source" path="source\"><File path="template.c"></File></MagicFolder><MagicFolder excludeFolders="CVS;.svn" filter="*.h" name="include" path="include\"></MagicFolder><File path="Makefile"></File></Project>
|
|
|
@ -1 +0,0 @@
|
||||||
<pd><ViewState><e p="template" x="true"></e><e p="template\source" x="true"></e></ViewState></pd>
|
|
|
@ -1,8 +0,0 @@
|
||||||
SUBDIRS:= `ls | egrep -v '^(CVS)$$'`
|
|
||||||
|
|
||||||
all:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done;
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done;
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
SUBDIRS:= `ls | egrep -v '^(CVS)$$'`
|
|
||||||
|
|
||||||
all:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done;
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done;
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
<Project name="template"><MagicFolder excludeFolders="CVS;.svn" filter="*.c;*.cpp;*.h" name="source" path="source\"><File path="template.c"></File></MagicFolder><MagicFolder excludeFolders="CVS;.svn" filter="*.h" name="include" path="include\"></MagicFolder><File path="Makefile"></File></Project>
|
|
|
@ -1 +0,0 @@
|
||||||
<pd><ViewState><e p="template" x="true"></e><e p="template\source" x="true"></e></ViewState></pd>
|
|
|
@ -1 +0,0 @@
|
||||||
<Project name="template"><MagicFolder excludeFolders="CVS;.svn" filter="*.c;*.cpp;*.h" name="source" path="source\"><File path="template.c"></File></MagicFolder><MagicFolder excludeFolders="CVS;.svn" filter="*.h" name="include" path="include\"></MagicFolder><File path="Makefile"></File></Project>
|
|
|
@ -1 +0,0 @@
|
||||||
<pd><ViewState><e p="template" x="true"></e><e p="template\source" x="true"></e></ViewState></pd>
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="9.00"
|
||||||
|
Name="EXI"
|
||||||
|
ProjectGUID="{AA230C1A-42F2-4BDC-9EB8-4AA6DF587E69}"
|
||||||
|
RootNamespace="TestSuite"
|
||||||
|
Keyword="MakeFileProj"
|
||||||
|
TargetFrameworkVersion="196613"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_exi.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_exi.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\source\dolphintest_exi.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -1,78 +1,78 @@
|
||||||
#include <gccore.h>
|
#include <gccore.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <ogcsys.h>
|
#include <ogcsys.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
static void *xfb = NULL;
|
static void *xfb = NULL;
|
||||||
u32 first_frame = 1;
|
u32 first_frame = 1;
|
||||||
GXRModeObj *rmode;
|
GXRModeObj *rmode;
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
VIDEO_Init();
|
VIDEO_Init();
|
||||||
|
|
||||||
rmode = VIDEO_GetPreferredMode(NULL);
|
rmode = VIDEO_GetPreferredMode(NULL);
|
||||||
|
|
||||||
PAD_Init();
|
PAD_Init();
|
||||||
|
|
||||||
|
|
||||||
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
|
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
|
||||||
|
|
||||||
VIDEO_Configure(rmode);
|
VIDEO_Configure(rmode);
|
||||||
|
|
||||||
VIDEO_SetNextFramebuffer(xfb);
|
VIDEO_SetNextFramebuffer(xfb);
|
||||||
|
|
||||||
VIDEO_SetBlack(FALSE);
|
VIDEO_SetBlack(FALSE);
|
||||||
VIDEO_Flush();
|
VIDEO_Flush();
|
||||||
VIDEO_WaitVSync();
|
VIDEO_WaitVSync();
|
||||||
if(rmode->viTVMode&VI_NON_INTERLACE) VIDEO_WaitVSync();
|
if(rmode->viTVMode&VI_NON_INTERLACE) VIDEO_WaitVSync();
|
||||||
|
|
||||||
|
|
||||||
console_init(xfb,20,20,rmode->fbWidth,rmode->xfbHeight,rmode->fbWidth*2);
|
console_init(xfb,20,20,rmode->fbWidth,rmode->xfbHeight,rmode->fbWidth*2);
|
||||||
|
|
||||||
|
|
||||||
time_t gc_time;
|
time_t gc_time;
|
||||||
gc_time = time(NULL);
|
gc_time = time(NULL);
|
||||||
|
|
||||||
srand(gc_time);
|
srand(gc_time);
|
||||||
while(1)
|
while(1)
|
||||||
{
|
{
|
||||||
s32 Size;
|
s32 Size;
|
||||||
s32 SSize;
|
s32 SSize;
|
||||||
u32 ID;
|
u32 ID;
|
||||||
s32 error;
|
s32 error;
|
||||||
VIDEO_ClearFrameBuffer(rmode, xfb, 0);
|
VIDEO_ClearFrameBuffer(rmode, xfb, 0);
|
||||||
|
|
||||||
EXI_GetID(0, 0, &ID);
|
EXI_GetID(0, 0, &ID);
|
||||||
error = CARD_ProbeEx(0, &Size, &SSize);
|
error = CARD_ProbeEx(0, &Size, &SSize);
|
||||||
// Can't use printf since Dolphin overrides it
|
// Can't use printf since Dolphin overrides it
|
||||||
if(error >= 0) // All is good
|
if(error >= 0) // All is good
|
||||||
std::cout << "Card A has a size of " << Size << " and a Sector Size of " << SSize;
|
std::cout << "Card A has a size of " << Size << " and a Sector Size of " << SSize;
|
||||||
else if( error == -2) // Device isn't Memory card
|
else if( error == -2) // Device isn't Memory card
|
||||||
std::cout << "Device isn't Mem card in Slot A";
|
std::cout << "Device isn't Mem card in Slot A";
|
||||||
else
|
else
|
||||||
std::cout << "Got an error of " << error << " with slot A";
|
std::cout << "Got an error of " << error << " with slot A";
|
||||||
std::cout << " ID of 0x" << std::setbase(16) << ID << std::endl;
|
std::cout << " ID of 0x" << std::setbase(16) << ID << std::endl;
|
||||||
|
|
||||||
std::cout << std::setbase(10);
|
std::cout << std::setbase(10);
|
||||||
EXI_GetID(1, 0, &ID);
|
EXI_GetID(1, 0, &ID);
|
||||||
error = CARD_ProbeEx(1, &Size, &SSize);
|
error = CARD_ProbeEx(1, &Size, &SSize);
|
||||||
if(error >= 0) // All is good
|
if(error >= 0) // All is good
|
||||||
std::cout << "Card B has a size of " << Size << " and a Sector Size of " << SSize;
|
std::cout << "Card B has a size of " << Size << " and a Sector Size of " << SSize;
|
||||||
else if( error == -2) // Device isn't Memory card
|
else if( error == -2) // Device isn't Memory card
|
||||||
std::cout << "Device isn't Mem card in Slot B";
|
std::cout << "Device isn't Mem card in Slot B";
|
||||||
else
|
else
|
||||||
std::cout << "Got an error of " << error << " with slot B";
|
std::cout << "Got an error of " << error << " with slot B";
|
||||||
std::cout << " ID of 0x" << std::setbase(16) << ID << std::endl;
|
std::cout << " ID of 0x" << std::setbase(16) << ID << std::endl;
|
||||||
VIDEO_WaitVSync();
|
VIDEO_WaitVSync();
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
|
@ -0,0 +1,84 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="9.00"
|
||||||
|
Name="GX"
|
||||||
|
ProjectGUID="{F45E42B2-939B-4F02-954B-E68251FD4CCF}"
|
||||||
|
RootNamespace="TestSuite"
|
||||||
|
Keyword="MakeFileProj"
|
||||||
|
TargetFrameworkVersion="196613"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_gx.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_gx.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\source\dolphintest_gx.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -1,9 +1,6 @@
|
||||||
/*---------------------------------------------------------------------------------
|
/*---------------------------------------------------------------------------------
|
||||||
|
a simple rotating cube demo by tkcne
|
||||||
a simple rotating cube demo by tkcne
|
|
||||||
|
|
||||||
---------------------------------------------------------------------------------*/
|
---------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -13,24 +10,23 @@
|
||||||
#include <gcmodplay.h>
|
#include <gcmodplay.h>
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
#include <ogcsys.h>
|
#include <ogcsys.h>
|
||||||
|
|
||||||
#define DEFAULT_FIFO_SIZE (256*1024) //GX_FIFO_MINSIZE
|
#define DEFAULT_FIFO_SIZE (256*1024) //GX_FIFO_MINSIZE
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
// cube vertex data
|
// cube vertex data
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
s16 cube[] ATTRIBUTE_ALIGN(32) = {
|
s16 cube[] ATTRIBUTE_ALIGN(32) = {
|
||||||
// x y z
|
// x y z
|
||||||
-15, 15, -15, // 0
|
-15, 15, -15, // 0
|
||||||
15, 15, -15, // 1
|
15, 15, -15, // 1
|
||||||
15, 15, 15, // 2
|
15, 15, 15, // 2
|
||||||
-15, 15, 15, // 3
|
-15, 15, 15, // 3
|
||||||
15, -15, -15, // 4
|
15, -15, -15, // 4
|
||||||
15, -15, 15, // 5
|
15, -15, 15, // 5
|
||||||
-15, -15, 15, // 6
|
-15, -15, 15, // 6
|
||||||
-15, -15, -15, // 7
|
-15, -15, -15, // 7
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
// color data
|
// color data
|
||||||
|
@ -41,36 +37,37 @@ u8 colors[] ATTRIBUTE_ALIGN(32) = {
|
||||||
240, 0, 0, 255, // 1 red
|
240, 0, 0, 255, // 1 red
|
||||||
255, 180, 0, 255, // 2 orange
|
255, 180, 0, 255, // 2 orange
|
||||||
255, 255, 0, 255, // 3 yellow
|
255, 255, 0, 255, // 3 yellow
|
||||||
10, 120, 40, 255, // 4 green
|
10, 120, 40, 255, // 4 green
|
||||||
0, 20, 100, 255 // 5 blue
|
0, 20, 100, 255 // 5 blue
|
||||||
};
|
};
|
||||||
|
|
||||||
u32
|
u32
|
||||||
CvtRGB (u8 r1, u8 g1, u8 b1, u8 r2, u8 g2, u8 b2)
|
CvtRGB (u8 r1, u8 g1, u8 b1, u8 r2, u8 g2, u8 b2)
|
||||||
{
|
{
|
||||||
int y1, cb1, cr1, y2, cb2, cr2, cb, cr;
|
int y1, cb1, cr1, y2, cb2, cr2, cb, cr;
|
||||||
|
|
||||||
y1 = (299 * r1 + 587 * g1 + 114 * b1) / 1000;
|
y1 = (299 * r1 + 587 * g1 + 114 * b1) / 1000;
|
||||||
cb1 = (-16874 * r1 - 33126 * g1 + 50000 * b1 + 12800000) / 100000;
|
cb1 = (-16874 * r1 - 33126 * g1 + 50000 * b1 + 12800000) / 100000;
|
||||||
cr1 = (50000 * r1 - 41869 * g1 - 8131 * b1 + 12800000) / 100000;
|
cr1 = (50000 * r1 - 41869 * g1 - 8131 * b1 + 12800000) / 100000;
|
||||||
|
|
||||||
y2 = (299 * r2 + 587 * g2 + 114 * b2) / 1000;
|
y2 = (299 * r2 + 587 * g2 + 114 * b2) / 1000;
|
||||||
cb2 = (-16874 * r2 - 33126 * g2 + 50000 * b2 + 12800000) / 100000;
|
cb2 = (-16874 * r2 - 33126 * g2 + 50000 * b2 + 12800000) / 100000;
|
||||||
cr2 = (50000 * r2 - 41869 * g2 - 8131 * b2 + 12800000) / 100000;
|
cr2 = (50000 * r2 - 41869 * g2 - 8131 * b2 + 12800000) / 100000;
|
||||||
|
|
||||||
cb = (cb1 + cb2) >> 1;
|
cb = (cb1 + cb2) >> 1;
|
||||||
cr = (cr1 + cr2) >> 1;
|
cr = (cr1 + cr2) >> 1;
|
||||||
|
|
||||||
return (y1 << 24) | (cb << 16) | (y2 << 8) | cr;
|
return (y1 << 24) | (cb << 16) | (y2 << 8) | cr;
|
||||||
}
|
}
|
||||||
|
|
||||||
static u32 curr_fb = 0;
|
static u32 curr_fb = 0;
|
||||||
static u32 first_frame = 1;
|
static u32 first_frame = 1;
|
||||||
static u32 *xfb[2] = {NULL,NULL};
|
static u32 *xfb[2] = {NULL,NULL};
|
||||||
GXRModeObj *rmode;
|
GXRModeObj *rmode;
|
||||||
|
|
||||||
void draw_init();
|
void draw_init();
|
||||||
void draw_cube(Mtx v);
|
void draw_cube(Mtx v);
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
int main( int argc, char **argv ){
|
int main( int argc, char **argv ){
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
|
@ -80,25 +77,25 @@ int main( int argc, char **argv ){
|
||||||
Mtx v,p; // view and perspective matrices
|
Mtx v,p; // view and perspective matrices
|
||||||
int CP = 0;
|
int CP = 0;
|
||||||
GXColor background = {0, 0, 0, 0xff};
|
GXColor background = {0, 0, 0, 0xff};
|
||||||
int startx, starty;
|
int startx, starty;
|
||||||
int directionx, directiony;
|
int directionx, directiony;
|
||||||
|
|
||||||
// init the vi. setup frame buffer and set the retrace callback
|
// init the vi. setup frame buffer and set the retrace callback
|
||||||
// to copy the efb to xfb
|
// to copy the efb to xfb
|
||||||
VIDEO_Init();
|
VIDEO_Init();
|
||||||
PAD_Init();
|
PAD_Init();
|
||||||
|
|
||||||
rmode = VIDEO_GetPreferredMode(NULL);
|
rmode = VIDEO_GetPreferredMode(NULL);
|
||||||
|
|
||||||
|
|
||||||
curr_fb = 0;
|
curr_fb = 0;
|
||||||
first_frame = 0;
|
first_frame = 0;
|
||||||
|
|
||||||
// setup the fifo and then init the flipper
|
// setup the fifo and then init the flipper
|
||||||
void *gp_fifo = NULL;
|
void *gp_fifo = NULL;
|
||||||
gp_fifo = memalign(32,DEFAULT_FIFO_SIZE);
|
gp_fifo = memalign(32,DEFAULT_FIFO_SIZE);
|
||||||
memset(gp_fifo,0,DEFAULT_FIFO_SIZE);
|
memset(gp_fifo,0,DEFAULT_FIFO_SIZE);
|
||||||
|
|
||||||
xfb[0] = (u32 *) MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
|
xfb[0] = (u32 *) MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
|
||||||
xfb[1] = (u32 *) MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
|
xfb[1] = (u32 *) MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
|
||||||
|
|
||||||
|
@ -109,14 +106,14 @@ int main( int argc, char **argv ){
|
||||||
VIDEO_WaitVSync();
|
VIDEO_WaitVSync();
|
||||||
if(rmode->viTVMode&VI_NON_INTERLACE) VIDEO_WaitVSync();
|
if(rmode->viTVMode&VI_NON_INTERLACE) VIDEO_WaitVSync();
|
||||||
console_init(xfb[curr_fb],20,20,rmode->fbWidth,rmode->xfbHeight,rmode->fbWidth*VI_DISPLAY_PIX_SZ);
|
console_init(xfb[curr_fb],20,20,rmode->fbWidth,rmode->xfbHeight,rmode->fbWidth*VI_DISPLAY_PIX_SZ);
|
||||||
|
|
||||||
//curr_fb ^= 1;
|
//curr_fb ^= 1;
|
||||||
|
|
||||||
GX_Init(gp_fifo,DEFAULT_FIFO_SIZE);
|
GX_Init(gp_fifo,DEFAULT_FIFO_SIZE);
|
||||||
|
|
||||||
// clears the bg to color and clears the z buffer
|
// clears the bg to color and clears the z buffer
|
||||||
GX_SetCopyClear(background, 0x00ffffff);
|
GX_SetCopyClear(background, 0x00ffffff);
|
||||||
|
|
||||||
// other gx setup
|
// other gx setup
|
||||||
GX_SetViewport(0,0,rmode->fbWidth,rmode->efbHeight,0,1);
|
GX_SetViewport(0,0,rmode->fbWidth,rmode->efbHeight,0,1);
|
||||||
yscale = GX_GetYScaleFactor(rmode->efbHeight,rmode->xfbHeight);
|
yscale = GX_GetYScaleFactor(rmode->efbHeight,rmode->xfbHeight);
|
||||||
|
@ -126,37 +123,37 @@ int main( int argc, char **argv ){
|
||||||
GX_SetDispCopyDst(rmode->fbWidth,xfbHeight);
|
GX_SetDispCopyDst(rmode->fbWidth,xfbHeight);
|
||||||
GX_SetCopyFilter(rmode->aa,rmode->sample_pattern,GX_TRUE,rmode->vfilter);
|
GX_SetCopyFilter(rmode->aa,rmode->sample_pattern,GX_TRUE,rmode->vfilter);
|
||||||
GX_SetFieldMode(rmode->field_rendering,((rmode->viHeight==2*rmode->xfbHeight)?GX_ENABLE:GX_DISABLE));
|
GX_SetFieldMode(rmode->field_rendering,((rmode->viHeight==2*rmode->xfbHeight)?GX_ENABLE:GX_DISABLE));
|
||||||
|
|
||||||
// cull none because other values produce weird results
|
// cull none because other values produce weird results
|
||||||
GX_SetCullMode(GX_CULL_NONE);
|
GX_SetCullMode(GX_CULL_NONE);
|
||||||
GX_CopyDisp(xfb[curr_fb],GX_TRUE);
|
GX_CopyDisp(xfb[curr_fb],GX_TRUE);
|
||||||
GX_SetDispCopyGamma(GX_GM_1_0);
|
GX_SetDispCopyGamma(GX_GM_1_0);
|
||||||
|
|
||||||
// setup our camera at the origin
|
// setup our camera at the origin
|
||||||
// looking down the -z axis with y up
|
// looking down the -z axis with y up
|
||||||
Vector cam = {0.0F, 0.0F, 0.0F},
|
Vector cam = {0.0F, 0.0F, 0.0F},
|
||||||
up = {0.0F, 1.0F, 0.0F},
|
up = {0.0F, 1.0F, 0.0F},
|
||||||
look = {0.0F, 0.0F, -1.0F};
|
look = {0.0F, 0.0F, -1.0F};
|
||||||
guLookAt(v, &cam, &up, &look);
|
guLookAt(v, &cam, &up, &look);
|
||||||
|
|
||||||
// setup our projection matrix
|
// setup our projection matrix
|
||||||
// this creates a perspective matrix with a view angle of 60,
|
// this creates a perspective matrix with a view angle of 60,
|
||||||
// an aspect ratio of 4/3 (i'm not sure if that's the right
|
// an aspect ratio of 4/3 (i'm not sure if that's the right
|
||||||
// way to do it but i just went by what made a square on my screen)
|
// way to do it but i just went by what made a square on my screen)
|
||||||
// and z near and far distances
|
// and z near and far distances
|
||||||
f32 w = rmode->viWidth;
|
f32 w = rmode->viWidth;
|
||||||
f32 h = rmode->viHeight;
|
f32 h = rmode->viHeight;
|
||||||
guPerspective(p, 60, (f32)w/h, 10.0F, 300.0F);
|
guPerspective(p, 60, (f32)w/h, 10.0F, 300.0F);
|
||||||
GX_LoadProjectionMtx(p, GX_PERSPECTIVE);
|
GX_LoadProjectionMtx(p, GX_PERSPECTIVE);
|
||||||
|
|
||||||
GXColor Test = { 192, 255, 0, 255 };
|
GXColor Test = { 192, 255, 0, 255 };
|
||||||
GX_SetFog(GX_FOG_EXP2, 1, 2, 3, 4, Test);
|
GX_SetFog(GX_FOG_EXP2, 1, 2, 3, 4, Test);
|
||||||
GXFogAdjTbl bum;
|
GXFogAdjTbl bum;
|
||||||
GX_SetFogRangeAdj(GX_ENABLE, 255, &bum);
|
GX_SetFogRangeAdj(GX_ENABLE, 255, &bum);
|
||||||
// setup vertexes
|
// setup vertexes
|
||||||
draw_init();
|
draw_init();
|
||||||
|
|
||||||
colour1 = CvtRGB (0xff, 0xff, 0xff, 0xff, 0xff, 0xff);
|
colour1 = CvtRGB (0xff, 0xff, 0xff, 0xff, 0xff, 0xff);
|
||||||
// main loop
|
// main loop
|
||||||
while(1) {
|
while(1) {
|
||||||
|
|
||||||
|
@ -173,64 +170,64 @@ int main( int argc, char **argv ){
|
||||||
GX_InvalidateTexAll();
|
GX_InvalidateTexAll();
|
||||||
GX_SetScissor(640 , 480,680 , 560);
|
GX_SetScissor(640 , 480,680 , 560);
|
||||||
GX_SetScissorBoxOffset(-80, -80);
|
GX_SetScissorBoxOffset(-80, -80);
|
||||||
|
|
||||||
// draw our cube
|
// draw our cube
|
||||||
draw_cube(v);
|
draw_cube(v);
|
||||||
|
|
||||||
GX_SetZMode(GX_TRUE, GX_LEQUAL, GX_TRUE);
|
GX_SetZMode(GX_TRUE, GX_LEQUAL, GX_TRUE);
|
||||||
GX_SetColorUpdate(GX_TRUE);
|
GX_SetColorUpdate(GX_TRUE);
|
||||||
GX_CopyDisp(xfb[curr_fb],GX_TRUE);
|
GX_CopyDisp(xfb[curr_fb],GX_TRUE);
|
||||||
|
|
||||||
// do this stuff after drawing
|
// do this stuff after drawing
|
||||||
GX_DrawDone();
|
GX_DrawDone();
|
||||||
/*** Draw Bouncing Square ***/
|
/*** Draw Bouncing Square ***/
|
||||||
if (directionx)
|
if (directionx)
|
||||||
startx -= 4;
|
startx -= 4;
|
||||||
else
|
else
|
||||||
startx += 4;
|
startx += 4;
|
||||||
|
|
||||||
if (directiony)
|
if (directiony)
|
||||||
starty -= 2;
|
starty -= 2;
|
||||||
else
|
else
|
||||||
starty += 2;
|
starty += 2;
|
||||||
|
|
||||||
if (startx >= 576) directionx = 1;
|
if (startx >= 576) directionx = 1;
|
||||||
|
|
||||||
if (starty >= (rmode->xfbHeight - 64)) directiony = 1;
|
if (starty >= (rmode->xfbHeight - 64)) directiony = 1;
|
||||||
|
|
||||||
if (startx < 0) {
|
if (startx < 0) {
|
||||||
startx = 0;
|
startx = 0;
|
||||||
directionx = 0;
|
directionx = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (starty < 0) {
|
if (starty < 0) {
|
||||||
starty = 0;
|
starty = 0;
|
||||||
directiony = 0;
|
directiony = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
CP = (starty * 320) + (startx >> 1);
|
CP = (starty * 320) + (startx >> 1);
|
||||||
for (int rows = 0; rows < 64; rows++) {
|
for (int rows = 0; rows < 64; rows++) {
|
||||||
for (int cols = 0; cols < 32; cols++)
|
for (int cols = 0; cols < 32; cols++)
|
||||||
xfb[curr_fb][CP + cols] = colour1;
|
xfb[curr_fb][CP + cols] = colour1;
|
||||||
|
|
||||||
CP += 320;
|
CP += 320;
|
||||||
}
|
}
|
||||||
VIDEO_SetNextFramebuffer(xfb[curr_fb]);
|
VIDEO_SetNextFramebuffer(xfb[curr_fb]);
|
||||||
|
|
||||||
if(first_frame) {
|
if(first_frame) {
|
||||||
first_frame = 0;
|
first_frame = 0;
|
||||||
VIDEO_SetBlack(FALSE);
|
VIDEO_SetBlack(FALSE);
|
||||||
}
|
}
|
||||||
VIDEO_Flush();
|
VIDEO_Flush();
|
||||||
|
|
||||||
VIDEO_WaitVSync();
|
VIDEO_WaitVSync();
|
||||||
curr_fb ^= 1;
|
curr_fb ^= 1;
|
||||||
|
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
void draw_init() {
|
void draw_init() {
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
|
@ -240,7 +237,7 @@ void draw_init() {
|
||||||
GX_ClearVtxDesc();
|
GX_ClearVtxDesc();
|
||||||
GX_SetVtxDesc(GX_VA_POS, GX_INDEX8);
|
GX_SetVtxDesc(GX_VA_POS, GX_INDEX8);
|
||||||
GX_SetVtxDesc(GX_VA_CLR0, GX_INDEX8);
|
GX_SetVtxDesc(GX_VA_CLR0, GX_INDEX8);
|
||||||
|
|
||||||
// setup the vertex attribute table
|
// setup the vertex attribute table
|
||||||
// describes the data
|
// describes the data
|
||||||
// args: vat location 0-7, type of data, data format, size, scale
|
// args: vat location 0-7, type of data, data format, size, scale
|
||||||
|
@ -249,14 +246,14 @@ void draw_init() {
|
||||||
// bits for non float data.
|
// bits for non float data.
|
||||||
GX_SetVtxAttrFmt(GX_VTXFMT0, GX_VA_POS, GX_POS_XYZ, GX_S16, 0);
|
GX_SetVtxAttrFmt(GX_VTXFMT0, GX_VA_POS, GX_POS_XYZ, GX_S16, 0);
|
||||||
GX_SetVtxAttrFmt(GX_VTXFMT0, GX_VA_CLR0, GX_CLR_RGBA, GX_RGBA8, 0);
|
GX_SetVtxAttrFmt(GX_VTXFMT0, GX_VA_CLR0, GX_CLR_RGBA, GX_RGBA8, 0);
|
||||||
|
|
||||||
// tells gx where our position and color data is
|
// tells gx where our position and color data is
|
||||||
// args: type of data, pointer, array stride
|
// args: type of data, pointer, array stride
|
||||||
GX_SetArray(GX_VA_POS, cube, 3*sizeof(s16));
|
GX_SetArray(GX_VA_POS, cube, 3*sizeof(s16));
|
||||||
GX_SetArray(GX_VA_CLR0, colors, 4*sizeof(u8));
|
GX_SetArray(GX_VA_CLR0, colors, 4*sizeof(u8));
|
||||||
DCFlushRange(cube,sizeof(cube));
|
DCFlushRange(cube,sizeof(cube));
|
||||||
DCFlushRange(colors,sizeof(colors));
|
DCFlushRange(colors,sizeof(colors));
|
||||||
|
|
||||||
// no idea...sets to no textures
|
// no idea...sets to no textures
|
||||||
// i don't know anything about textures or lighting yet :|
|
// i don't know anything about textures or lighting yet :|
|
||||||
GX_SetNumChans(1);
|
GX_SetNumChans(1);
|
||||||
|
@ -264,8 +261,8 @@ void draw_init() {
|
||||||
GX_SetTevOrder(GX_TEVSTAGE0, GX_TEXCOORDNULL, GX_TEXMAP_NULL, GX_COLOR0A0);
|
GX_SetTevOrder(GX_TEVSTAGE0, GX_TEXCOORDNULL, GX_TEXMAP_NULL, GX_COLOR0A0);
|
||||||
GX_SetTevOp(GX_TEVSTAGE0, GX_PASSCLR);
|
GX_SetTevOp(GX_TEVSTAGE0, GX_PASSCLR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
// draws a quad from 4 vertex idx and one color idx
|
// draws a quad from 4 vertex idx and one color idx
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
|
@ -282,8 +279,8 @@ void draw_quad(u8 v0, u8 v1, u8 v2, u8 v3, u8 c) {
|
||||||
GX_Position1x8(v3);
|
GX_Position1x8(v3);
|
||||||
GX_Color1x8(c);
|
GX_Color1x8(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
void draw_cube(Mtx v) {
|
void draw_cube(Mtx v) {
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
|
@ -291,9 +288,9 @@ void draw_cube(Mtx v) {
|
||||||
Mtx mv; // modelview matrix.
|
Mtx mv; // modelview matrix.
|
||||||
Vector axis = {-1,1,0};
|
Vector axis = {-1,1,0};
|
||||||
static float rotateby = 0;
|
static float rotateby = 0;
|
||||||
|
|
||||||
rotateby ++;
|
rotateby ++;
|
||||||
|
|
||||||
// move the cube out in front of us and rotate it
|
// move the cube out in front of us and rotate it
|
||||||
guMtxIdentity(m);
|
guMtxIdentity(m);
|
||||||
guMtxRotAxisDeg(m, &axis, rotateby);
|
guMtxRotAxisDeg(m, &axis, rotateby);
|
||||||
|
@ -301,19 +298,19 @@ void draw_cube(Mtx v) {
|
||||||
guMtxConcat(v,m,mv);
|
guMtxConcat(v,m,mv);
|
||||||
// load the modelview matrix into matrix memory
|
// load the modelview matrix into matrix memory
|
||||||
GX_LoadPosMtxImm(mv, GX_PNMTX0);
|
GX_LoadPosMtxImm(mv, GX_PNMTX0);
|
||||||
|
|
||||||
// drawing begins!
|
// drawing begins!
|
||||||
// tells the flipper what type of primitive we will be drawing
|
// tells the flipper what type of primitive we will be drawing
|
||||||
// which descriptor in the VAT to use and the number of vertices
|
// which descriptor in the VAT to use and the number of vertices
|
||||||
// to expect. 24 since we will draw 6 quads with 4 verts each.
|
// to expect. 24 since we will draw 6 quads with 4 verts each.
|
||||||
GX_Begin(GX_QUADS, GX_VTXFMT0, 24);
|
GX_Begin(GX_QUADS, GX_VTXFMT0, 24);
|
||||||
|
|
||||||
draw_quad(0, 3, 2, 1, 0);
|
draw_quad(0, 3, 2, 1, 0);
|
||||||
draw_quad(0, 7, 6, 3, 1);
|
draw_quad(0, 7, 6, 3, 1);
|
||||||
draw_quad(0, 1, 4, 7, 2);
|
draw_quad(0, 1, 4, 7, 2);
|
||||||
draw_quad(1, 2, 5, 4, 3);
|
draw_quad(1, 2, 5, 4, 3);
|
||||||
draw_quad(2, 3, 6, 5, 4);
|
draw_quad(2, 3, 6, 5, 4);
|
||||||
draw_quad(4, 7, 6, 5, 5);
|
draw_quad(4, 7, 6, 5, 5);
|
||||||
|
|
||||||
GX_End();
|
GX_End();
|
||||||
}
|
}
|
|
@ -1,8 +0,0 @@
|
||||||
SUBDIRS:= `ls | egrep -v '^(CVS)$$'`
|
|
||||||
|
|
||||||
all:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done;
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done;
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
<Project name="template"><MagicFolder excludeFolders="CVS;.svn" filter="*.c;*.cpp;*.h" name="source" path="source\"><File path="template.c"></File></MagicFolder><MagicFolder excludeFolders="CVS;.svn" filter="*.h" name="include" path="include\"></MagicFolder><File path="Makefile"></File></Project>
|
|
|
@ -1 +0,0 @@
|
||||||
<pd><ViewState><e p="template" x="true"></e><e p="template\source" x="true"></e></ViewState></pd>
|
|
|
@ -1,8 +0,0 @@
|
||||||
SUBDIRS:= `ls | egrep -v '^(CVS)$$'`
|
|
||||||
|
|
||||||
all:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done;
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done;
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#Someone who would use this, please fix it :)
|
||||||
SUBDIRS:= `ls | egrep -v '^(CVS)$$'`
|
SUBDIRS:= `ls | egrep -v '^(CVS)$$'`
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
<Project name="template"><MagicFolder excludeFolders="CVS;.svn" filter="*.c;*.cpp;*.h" name="source" path="source\"><File path="template.c"></File></MagicFolder><MagicFolder excludeFolders="CVS;.svn" filter="*.h" name="include" path="include\"></MagicFolder><File path="Makefile"></File></Project>
|
|
|
@ -1 +0,0 @@
|
||||||
<pd><ViewState><e p="template" x="true"></e><e p="template\source" x="true"></e></ViewState></pd>
|
|
|
@ -1,8 +0,0 @@
|
||||||
SUBDIRS:= `ls | egrep -v '^(CVS)$$'`
|
|
||||||
|
|
||||||
all:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done;
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done;
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
<Project name="template"><MagicFolder excludeFolders="CVS;.svn" filter="*.c;*.cpp;*.h" name="source" path="source\"><File path="template.c"></File></MagicFolder><MagicFolder excludeFolders="CVS;.svn" filter="*.h" name="include" path="include\"></MagicFolder><File path="Makefile"></File></Project>
|
|
|
@ -1 +0,0 @@
|
||||||
<pd><ViewState><e p="template" x="true"></e><e p="template\source" x="true"></e></ViewState></pd>
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="9.00"
|
||||||
|
Name="PAD"
|
||||||
|
ProjectGUID="{D58C9AD5-7200-488A-B1E8-9250E64CDD45}"
|
||||||
|
RootNamespace="TestSuite"
|
||||||
|
Keyword="MakeFileProj"
|
||||||
|
TargetFrameworkVersion="196613"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_pad.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_pad.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\source\dolphintest_pad.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -39,7 +39,7 @@ int main() {
|
||||||
VIDEO_SetBlack(FALSE);
|
VIDEO_SetBlack(FALSE);
|
||||||
VIDEO_Flush();
|
VIDEO_Flush();
|
||||||
VIDEO_WaitVSync();
|
VIDEO_WaitVSync();
|
||||||
if(rmode->viTVMode&VI_NON_INTERLACE)
|
if(rmode->viTVMode&VI_NON_INTERLACE)
|
||||||
VIDEO_WaitVSync();
|
VIDEO_WaitVSync();
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="9.00"
|
||||||
|
Name="RTC"
|
||||||
|
ProjectGUID="{62989D24-DB3F-4BD1-A11D-26F0487CD9AF}"
|
||||||
|
RootNamespace="TestSuite"
|
||||||
|
Keyword="MakeFileProj"
|
||||||
|
TargetFrameworkVersion="196613"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_rtc.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_rtc.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\source\dolphintest_rtc.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -1,55 +1,55 @@
|
||||||
#include <gccore.h>
|
#include <gccore.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <ogcsys.h>
|
#include <ogcsys.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
|
|
||||||
static void *xfb = NULL;
|
static void *xfb = NULL;
|
||||||
|
|
||||||
u32 first_frame = 1;
|
u32 first_frame = 1;
|
||||||
GXRModeObj *rmode;
|
GXRModeObj *rmode;
|
||||||
|
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
|
||||||
VIDEO_Init();
|
VIDEO_Init();
|
||||||
|
|
||||||
rmode = VIDEO_GetPreferredMode(NULL);
|
rmode = VIDEO_GetPreferredMode(NULL);
|
||||||
|
|
||||||
|
|
||||||
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
|
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));
|
||||||
|
|
||||||
VIDEO_Configure(rmode);
|
VIDEO_Configure(rmode);
|
||||||
|
|
||||||
VIDEO_SetNextFramebuffer(xfb);
|
VIDEO_SetNextFramebuffer(xfb);
|
||||||
|
|
||||||
VIDEO_SetBlack(FALSE);
|
VIDEO_SetBlack(FALSE);
|
||||||
VIDEO_Flush();
|
VIDEO_Flush();
|
||||||
VIDEO_WaitVSync();
|
VIDEO_WaitVSync();
|
||||||
if(rmode->viTVMode&VI_NON_INTERLACE) VIDEO_WaitVSync();
|
if(rmode->viTVMode&VI_NON_INTERLACE) VIDEO_WaitVSync();
|
||||||
|
|
||||||
|
|
||||||
console_init(xfb,20,20,rmode->fbWidth,rmode->xfbHeight,rmode->fbWidth*2);
|
console_init(xfb,20,20,rmode->fbWidth,rmode->xfbHeight,rmode->fbWidth*2);
|
||||||
|
|
||||||
|
|
||||||
time_t gc_time;
|
time_t gc_time;
|
||||||
gc_time = time(NULL);
|
gc_time = time(NULL);
|
||||||
|
|
||||||
srand(gc_time);
|
srand(gc_time);
|
||||||
|
|
||||||
while(1) {
|
while(1) {
|
||||||
|
|
||||||
gc_time = time(NULL);
|
gc_time = time(NULL);
|
||||||
printf("\x1b[10;0HRTC time is %s ",ctime(&gc_time));
|
printf("\x1b[10;0HRTC time is %s ",ctime(&gc_time));
|
||||||
|
|
||||||
VIDEO_WaitVSync();
|
VIDEO_WaitVSync();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,8 +1,130 @@
|
||||||
SUBDIRS:= `ls | egrep -v '^(CVS)$$'`
|
#---------------------------------------------------------------------------------
|
||||||
|
# Clear the implicit built in rules
|
||||||
all:
|
#---------------------------------------------------------------------------------
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i || { exit 1;} fi; done;
|
.SUFFIXES:
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
clean:
|
ifeq ($(strip $(DEVKITPPC)),)
|
||||||
@for i in $(SUBDIRS); do if test -e $$i/Makefile ; then $(MAKE) -C $$i clean || { exit 1;} fi; done;
|
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
|
||||||
|
endif
|
||||||
|
|
||||||
|
include $(DEVKITPPC)/gamecube_rules
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# TARGET is the name of the output
|
||||||
|
# BUILD is the directory where object files & intermediate files will be placed
|
||||||
|
# SOURCES is a list of directories containing source code
|
||||||
|
# INCLUDES is a list of directories containing extra header files
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
TARGET := $(notdir $(CURDIR))
|
||||||
|
BUILD := build
|
||||||
|
SOURCES := source
|
||||||
|
DATA := data
|
||||||
|
INCLUDES :=
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# options for code generation
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
CFLAGS = -g -O2 -Wall $(MACHDEP) $(INCLUDE)
|
||||||
|
CXXFLAGS = $(CFLAGS)
|
||||||
|
|
||||||
|
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# any extra libraries we wish to link with the project
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
LIBS := -logc -lm
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# list of directories containing libraries, this must be the top level containing
|
||||||
|
# include and lib
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
LIBDIRS :=
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# no real need to edit anything past this point unless you need to add additional
|
||||||
|
# rules for different file extensions
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
export OUTPUT := $(CURDIR)/$(TARGET)
|
||||||
|
|
||||||
|
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
|
||||||
|
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
|
||||||
|
|
||||||
|
export DEPSDIR := $(CURDIR)/$(BUILD)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# automatically build a list of object files for our project
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
|
||||||
|
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
|
||||||
|
sFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
|
||||||
|
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.S)))
|
||||||
|
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# use CXX for linking C++ projects, CC for standard C
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
ifeq ($(strip $(CPPFILES)),)
|
||||||
|
export LD := $(CC)
|
||||||
|
else
|
||||||
|
export LD := $(CXX)
|
||||||
|
endif
|
||||||
|
|
||||||
|
export OFILES := $(addsuffix .o,$(BINFILES)) \
|
||||||
|
$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
|
||||||
|
$(sFILES:.s=.o) $(SFILES:.S=.o)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# build a list of include paths
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
|
||||||
|
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
||||||
|
-I$(CURDIR)/$(BUILD) \
|
||||||
|
-I$(LIBOGC_INC)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# build a list of library paths
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
|
||||||
|
-L$(LIBOGC_LIB)
|
||||||
|
|
||||||
|
export OUTPUT := $(CURDIR)/$(TARGET)
|
||||||
|
.PHONY: $(BUILD) clean
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
$(BUILD):
|
||||||
|
@[ -d $@ ] || mkdir -p $@
|
||||||
|
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
clean:
|
||||||
|
@echo clean ...
|
||||||
|
@rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).dol
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
else
|
||||||
|
|
||||||
|
DEPENDS := $(OFILES:.o=.d)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# main targets
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
$(OUTPUT).dol: $(OUTPUT).elf
|
||||||
|
$(OUTPUT).elf: $(OFILES)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
# This rule links in binary data with the .jpg extension
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
%.jpg.o : %.jpg
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
@echo $(notdir $<)
|
||||||
|
$(bin2o)
|
||||||
|
|
||||||
|
-include $(DEPENDS)
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
endif
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
|
<VisualStudioProject
|
||||||
|
ProjectType="Visual C++"
|
||||||
|
Version="9.00"
|
||||||
|
Name="SI"
|
||||||
|
ProjectGUID="{87F20A25-A3F8-46A3-AC32-3C16782494B1}"
|
||||||
|
RootNamespace="TestSuite"
|
||||||
|
Keyword="MakeFileProj"
|
||||||
|
TargetFrameworkVersion="196613"
|
||||||
|
>
|
||||||
|
<Platforms>
|
||||||
|
<Platform
|
||||||
|
Name="Win32"
|
||||||
|
/>
|
||||||
|
</Platforms>
|
||||||
|
<ToolFiles>
|
||||||
|
</ToolFiles>
|
||||||
|
<Configurations>
|
||||||
|
<Configuration
|
||||||
|
Name="Debug|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_si.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;_DEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
<Configuration
|
||||||
|
Name="Release|Win32"
|
||||||
|
OutputDirectory="build"
|
||||||
|
IntermediateDirectory="build"
|
||||||
|
ConfigurationType="0"
|
||||||
|
BuildLogFile="build\BuildLog.htm"
|
||||||
|
>
|
||||||
|
<Tool
|
||||||
|
Name="VCNMakeTool"
|
||||||
|
BuildCommandLine="make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
ReBuildCommandLine="make clean && make -r 2>&1 | sed -e 's/\(.[a-zA-Z]\+\):\([0-9]\+\):/\1(\2):/’"
|
||||||
|
CleanCommandLine="make clean"
|
||||||
|
Output="dolphintest_si.dol"
|
||||||
|
PreprocessorDefinitions="WIN32;NDEBUG"
|
||||||
|
IncludeSearchPath="$(ProjectDir)\include;C:\devkitPro\libogc\include"
|
||||||
|
ForcedIncludes=""
|
||||||
|
AssemblySearchPath=""
|
||||||
|
ForcedUsingAssemblies=""
|
||||||
|
CompileAsManaged=""
|
||||||
|
/>
|
||||||
|
</Configuration>
|
||||||
|
</Configurations>
|
||||||
|
<References>
|
||||||
|
</References>
|
||||||
|
<Files>
|
||||||
|
<Filter
|
||||||
|
Name="Source Files"
|
||||||
|
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\source\dolphintest_si.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
<Filter
|
||||||
|
Name="Header Files"
|
||||||
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
|
>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
|
@ -1,130 +0,0 @@
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# Clear the implicit built in rules
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
.SUFFIXES:
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
ifeq ($(strip $(DEVKITPPC)),)
|
|
||||||
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(DEVKITPPC)/gamecube_rules
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# TARGET is the name of the output
|
|
||||||
# BUILD is the directory where object files & intermediate files will be placed
|
|
||||||
# SOURCES is a list of directories containing source code
|
|
||||||
# INCLUDES is a list of directories containing extra header files
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
TARGET := $(notdir $(CURDIR))
|
|
||||||
BUILD := build
|
|
||||||
SOURCES := source
|
|
||||||
DATA := data
|
|
||||||
INCLUDES :=
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# options for code generation
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
CFLAGS = -g -O2 -Wall $(MACHDEP) $(INCLUDE)
|
|
||||||
CXXFLAGS = $(CFLAGS)
|
|
||||||
|
|
||||||
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# any extra libraries we wish to link with the project
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
LIBS := -logc -lm
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# list of directories containing libraries, this must be the top level containing
|
|
||||||
# include and lib
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
LIBDIRS :=
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# no real need to edit anything past this point unless you need to add additional
|
|
||||||
# rules for different file extensions
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
export OUTPUT := $(CURDIR)/$(TARGET)
|
|
||||||
|
|
||||||
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
|
|
||||||
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
|
|
||||||
|
|
||||||
export DEPSDIR := $(CURDIR)/$(BUILD)
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# automatically build a list of object files for our project
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
|
|
||||||
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
|
|
||||||
sFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
|
|
||||||
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.S)))
|
|
||||||
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# use CXX for linking C++ projects, CC for standard C
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
ifeq ($(strip $(CPPFILES)),)
|
|
||||||
export LD := $(CC)
|
|
||||||
else
|
|
||||||
export LD := $(CXX)
|
|
||||||
endif
|
|
||||||
|
|
||||||
export OFILES := $(addsuffix .o,$(BINFILES)) \
|
|
||||||
$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
|
|
||||||
$(sFILES:.s=.o) $(SFILES:.S=.o)
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# build a list of include paths
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
|
|
||||||
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
|
||||||
-I$(CURDIR)/$(BUILD) \
|
|
||||||
-I$(LIBOGC_INC)
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# build a list of library paths
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
|
|
||||||
-L$(LIBOGC_LIB)
|
|
||||||
|
|
||||||
export OUTPUT := $(CURDIR)/$(TARGET)
|
|
||||||
.PHONY: $(BUILD) clean
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
$(BUILD):
|
|
||||||
@[ -d $@ ] || mkdir -p $@
|
|
||||||
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
clean:
|
|
||||||
@echo clean ...
|
|
||||||
@rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).dol
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
else
|
|
||||||
|
|
||||||
DEPENDS := $(OFILES:.o=.d)
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# main targets
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
$(OUTPUT).dol: $(OUTPUT).elf
|
|
||||||
$(OUTPUT).elf: $(OFILES)
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
# This rule links in binary data with the .jpg extension
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
%.jpg.o : %.jpg
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
@echo $(notdir $<)
|
|
||||||
$(bin2o)
|
|
||||||
|
|
||||||
-include $(DEPENDS)
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
|
||||||
endif
|
|
||||||
#---------------------------------------------------------------------------------
|
|
|
@ -1 +0,0 @@
|
||||||
<Project name="template"><MagicFolder excludeFolders="CVS;.svn" filter="*.c;*.cpp;*.h" name="source" path="source\"><File path="template.c"></File></MagicFolder><MagicFolder excludeFolders="CVS;.svn" filter="*.h" name="include" path="include\"></MagicFolder><File path="Makefile"></File></Project>
|
|
|
@ -1 +0,0 @@
|
||||||
<pd><ViewState><e p="template" x="true"></e><e p="template\source" x="true"></e></ViewState></pd>
|
|
|
@ -11,10 +11,12 @@ static void *xfb = NULL;
|
||||||
static GXRModeObj *rmode = NULL;
|
static GXRModeObj *rmode = NULL;
|
||||||
|
|
||||||
void *Initialise();
|
void *Initialise();
|
||||||
|
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
|
|
||||||
xfb = Initialise();
|
xfb = Initialise();
|
||||||
|
|
||||||
while(1) {
|
while(1) {
|
||||||
PAD_ScanPads();
|
PAD_ScanPads();
|
||||||
VIDEO_ClearFrameBuffer(rmode, xfb, 0);
|
VIDEO_ClearFrameBuffer(rmode, xfb, 0);
|
|
@ -0,0 +1,41 @@
|
||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||||
|
# Visual Studio 2008
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GX", "GX\GX.vcproj", "{F45E42B2-939B-4F02-954B-E68251FD4CCF}"
|
||||||
|
EndProject
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SI", "SI\SI.vcproj", "{87F20A25-A3F8-46A3-AC32-3C16782494B1}"
|
||||||
|
EndProject
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RTC", "RTC\RTC.vcproj", "{62989D24-DB3F-4BD1-A11D-26F0487CD9AF}"
|
||||||
|
EndProject
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PAD", "PAD\PAD.vcproj", "{D58C9AD5-7200-488A-B1E8-9250E64CDD45}"
|
||||||
|
EndProject
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EXI", "EXI\EXI.vcproj", "{AA230C1A-42F2-4BDC-9EB8-4AA6DF587E69}"
|
||||||
|
EndProject
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AX", "AX\AX.vcproj", "{9F053346-A33D-4E4F-874E-CBA1AF809FC3}"
|
||||||
|
EndProject
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ARAM", "ARAM\ARAM.vcproj", "{E50732C5-038A-42F7-8C95-8C02A4E2ADA6}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Release|Win32 = Release|Win32
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{F45E42B2-939B-4F02-954B-E68251FD4CCF}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
|
{F45E42B2-939B-4F02-954B-E68251FD4CCF}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
{87F20A25-A3F8-46A3-AC32-3C16782494B1}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
|
{87F20A25-A3F8-46A3-AC32-3C16782494B1}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
{62989D24-DB3F-4BD1-A11D-26F0487CD9AF}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
|
{62989D24-DB3F-4BD1-A11D-26F0487CD9AF}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
{D58C9AD5-7200-488A-B1E8-9250E64CDD45}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
|
{D58C9AD5-7200-488A-B1E8-9250E64CDD45}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
{AA230C1A-42F2-4BDC-9EB8-4AA6DF587E69}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
|
{AA230C1A-42F2-4BDC-9EB8-4AA6DF587E69}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
{9F053346-A33D-4E4F-874E-CBA1AF809FC3}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
|
{9F053346-A33D-4E4F-874E-CBA1AF809FC3}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
{E50732C5-038A-42F7-8C95-8C02A4E2ADA6}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
|
{E50732C5-038A-42F7-8C95-8C02A4E2ADA6}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
Loading…
Reference in New Issue