-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f7b49e1
Showing
862 changed files
with
269,484 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> | ||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry kind="src" path="gen"/> | ||
<classpathentry kind="output" path="bin/classes"/> | ||
</classpath> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>ds4droid</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.jdt.core.javabuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>com.android.ide.eclipse.adt.ApkBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>com.android.ide.eclipse.adt.AndroidNature</nature> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
</natures> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.opendoorstudios.ds4droid" | ||
android:versionCode="1" | ||
android:versionName="1" > | ||
|
||
<uses-sdk | ||
android:minSdkVersion="10" | ||
android:targetSdkVersion="10" /> | ||
|
||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.INTERNET"></uses-permission> | ||
|
||
<application | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" | ||
android:configChanges="keyboardHidden|orientation" | ||
android:debuggable="false" | ||
android:name="ds4droidApplication"> | ||
|
||
<activity | ||
android:name=".MainActivity" | ||
android:label="@string/title_activity_main" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<activity android:name=".FileDialog"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.PICK"/> | ||
<category android:name="android.intent.category.DEFAULT"/> | ||
</intent-filter> | ||
</activity> | ||
|
||
</application> | ||
|
||
</manifest> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Android ndk makefile for ds4droid | ||
|
||
LOCAL_BUILD_PATH := $(call my-dir) | ||
|
||
include $(CLEAR_VARS) | ||
|
||
include $(LOCAL_BUILD_PATH)/cpudetect/cpudetect.mk | ||
include $(LOCAL_BUILD_PATH)/desmume_neon.mk | ||
include $(LOCAL_BUILD_PATH)/desmume_compat.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Android ndk makefile for ds4droid | ||
|
||
APP_STL := gnustl_static | ||
APP_ABI := armeabi-v7a | ||
APP_CFLAGS := -O3 -ffast-math -funroll-loops -fno-strict-aliasing -Wno-psabi | ||
APP_PLATFORM := android-9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
Copyright (C) 2012 Jeffrey Quesnelle | ||
This file is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 2 of the License, or | ||
(at your option) any later version. | ||
This file is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with the this software. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include <cpu-features.h> | ||
#include <jni.h> | ||
|
||
#define JNI_NOARGS(X) Java_com_opendoorstudios_ds4droid_DeSmuME_##X(JNIEnv* env, jclass* clazz) | ||
|
||
extern "C" | ||
{ | ||
|
||
jboolean JNI_NOARGS(useNeon) | ||
{ | ||
if (android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM && | ||
(android_getCpuFeatures() & ANDROID_CPU_ARM_FEATURE_NEON) != 0) | ||
{ | ||
return JNI_TRUE; | ||
} | ||
else | ||
{ | ||
return JNI_FALSE; | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Android ndk makefile for cpudetect | ||
|
||
LOCAL_PATH := $(call my-dir) | ||
|
||
MY_LOCAL_PATH := $(LOCAL_PATH) | ||
|
||
include $(CLEAR_VARS) | ||
|
||
|
||
LOCAL_MODULE := libcpudetect | ||
LOCAL_SRC_FILES := cpu.cpp | ||
LOCAL_ARM_MODE := thumb | ||
LOCAL_ARM_NEON := false | ||
LOCAL_CFLAGS := -fexceptions | ||
LOCAL_STATIC_LIBRARIES := cpufeatures | ||
|
||
include $(BUILD_SHARED_LIBRARY) | ||
|
||
$(call import-module,cpufeatures) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
Original author | ||
--------------- | ||
yopyop | ||
|
||
Current team | ||
------------ | ||
Guillaume Duhamel | ||
Normmatt | ||
Bernat Mu�oz (shash) | ||
Riccardo Magliocchetti | ||
Max Tabachenko (CrazyMax) | ||
zeromus | ||
rogerman | ||
Luigi__ | ||
|
||
Contributors | ||
------------ | ||
Allustar | ||
amponzi | ||
Anthony Molinaro | ||
ape | ||
Damien Nozay (damdoum) | ||
delfare | ||
Romain Vallet | ||
snkmad | ||
Theo Berkau | ||
thoduv | ||
Tim Seidel (Mighty Max) | ||
Pascal Giard (evilynux) | ||
Ben Jaques (masscat) | ||
Jeff Bland | ||
Bernat Mu�oz (shash) | ||
matusz | ||
nitsuja | ||
gocha | ||
pa__ | ||
adelikat | ||
hi-coder | ||
WinterMute | ||
pengvado | ||
dormito | ||
ldesnogue | ||
|
||
Thanks to our super testers for this release | ||
------------ | ||
nash679 | ||
pokefan999 | ||
dottorleo |
Oops, something went wrong.