author | sheepluva |
Sat, 07 Dec 2019 16:18:20 +0100 | |
branch | hedgeroid |
changeset 15534 | 45d6806548e9 |
parent 11046 | 47a8c19ecb60 |
permissions | -rw-r--r-- |
7584
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
1 |
/* |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
2 |
* Hedgewars for Android. An Android port of Hedgewars, a free turn based strategy game |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
3 |
* Copyright (c) 2011-2012 Richard Deurwaarder <xeli@xelification.com> |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
4 |
* Copyright (C) 2012 Simeon Maxein <smaxein@googlemail.com> |
11046 | 5 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
7584
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
6 |
* |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
7 |
* This program is free software; you can redistribute it and/or |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
8 |
* modify it under the terms of the GNU General Public License |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
9 |
* as published by the Free Software Foundation; either version 2 |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
10 |
* of the License, or (at your option) any later version. |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
11 |
* |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
12 |
* This program is distributed in the hope that it will be useful, |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
15 |
* GNU General Public License for more details. |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
16 |
* |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
17 |
* You should have received a copy of the GNU General Public License |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
18 |
* along with this program; if not, write to the Free Software |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
19 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
20 |
*/ |
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
21 |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
22 |
package org.hedgewars.hedgeroid; |
7584
7831c84cc644
License change: With the agreement of Xeli, I changed the Hedgeroid license to
Medo <smaxein@googlemail.com>
parents:
7582
diff
changeset
|
23 |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
24 |
import java.io.IOException; |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7485
diff
changeset
|
25 |
import java.io.UnsupportedEncodingException; |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
26 |
import java.net.ConnectException; |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7485
diff
changeset
|
27 |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
28 |
import javax.microedition.khronos.egl.EGL10; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
29 |
import javax.microedition.khronos.egl.EGLConfig; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
30 |
import javax.microedition.khronos.egl.EGLContext; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
31 |
import javax.microedition.khronos.egl.EGLDisplay; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
32 |
import javax.microedition.khronos.egl.EGLSurface; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
33 |
|
7485 | 34 |
import org.hedgewars.hedgeroid.Datastructures.GameConfig; |
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
35 |
import org.hedgewars.hedgeroid.EngineProtocol.PascalExports; |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7485
diff
changeset
|
36 |
import org.hedgewars.hedgeroid.netplay.Netplay; |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7485
diff
changeset
|
37 |
import org.hedgewars.hedgeroid.util.FileUtils; |
7485 | 38 |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
39 |
import android.app.Activity; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
40 |
import android.content.Context; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
41 |
import android.graphics.Canvas; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
42 |
import android.graphics.PixelFormat; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
43 |
import android.hardware.Sensor; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
44 |
import android.hardware.SensorEvent; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
45 |
import android.hardware.SensorEventListener; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
46 |
import android.hardware.SensorManager; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
47 |
import android.media.AudioFormat; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
48 |
import android.media.AudioManager; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
49 |
import android.media.AudioTrack; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
50 |
import android.os.Bundle; |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7485
diff
changeset
|
51 |
import android.util.Base64; |
7167
0b3b306f129a
Android: added a callback to java to determine dpi/dip how much we should scale the ui
Xeli
parents:
7083
diff
changeset
|
52 |
import android.util.DisplayMetrics; |
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
53 |
import android.util.Log; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
54 |
import android.view.KeyEvent; |
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
55 |
import android.view.MotionEvent; |
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
56 |
import android.view.SurfaceHolder; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
57 |
import android.view.SurfaceView; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
58 |
import android.view.View; |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
59 |
|
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
60 |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
61 |
/** |
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
62 |
SDL Activity |
6599 | 63 |
*/ |
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
64 |
public class SDLActivity extends Activity { |
10017 | 65 |
/** |
66 |
* Set startConfig to the desired config when starting this activity. This avoids having to parcel all |
|
67 |
* the config objects into the Intent. Not particularly elegant, but it's actually a recommended |
|
68 |
* way to do this (http://developer.android.com/guide/faq/framework.html#3) |
|
69 |
*/ |
|
70 |
public static volatile GameConfig startConfig; |
|
71 |
public static volatile boolean startNetgame; |
|
6599 | 72 |
|
10017 | 73 |
// Main components |
74 |
public static SDLActivity mSingleton; |
|
75 |
private static SDLSurface mSurface; |
|
76 |
private static Thread mSDLThread; |
|
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
77 |
|
10017 | 78 |
// Audio |
79 |
private static Thread mAudioThread; |
|
80 |
private static AudioTrack mAudioTrack; |
|
81 |
||
82 |
// EGL private objects |
|
83 |
private static EGLContext mEGLContext; |
|
84 |
private static EGLSurface mEGLSurface; |
|
85 |
private static EGLDisplay mEGLDisplay; |
|
86 |
private static EGLConfig mEGLConfig; |
|
87 |
private static int mGLMajor, mGLMinor; |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
88 |
|
10017 | 89 |
// Load the .so |
15534
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
90 |
protected final static String[] libs = { |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
91 |
"SDL2", |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
92 |
"main", |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
93 |
}; |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
94 |
|
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
95 |
static{ |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
96 |
for (String l : libs) { |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
97 |
try { |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
98 |
android.util.Log.d("org.hedgewars.hedgeroid.SDLActivity", "Hedgewars (class SDLActivity) is attempting to load library '" + l + "' ..."); |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
99 |
System.loadLibrary(l); |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
100 |
android.util.Log.d("org.hedgewars.hedgeroid.SDLActivity", "Hedgewars (class SDLActivity) successfully loaded library '" + l + "'."); |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
101 |
} catch (Exception ex) { |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
102 |
android.util.Log.e("org.hedgewars.hedgeroid.SDLActivity", "Hedgewars (class SDLActivity) failed to load library '" + l + "':" + ex.getMessage()); |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
103 |
throw ex; |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
104 |
} |
45d6806548e9
hedgeroid: add debug logging to library loading
sheepluva
parents:
11046
diff
changeset
|
105 |
} |
10017 | 106 |
} |
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
107 |
|
10017 | 108 |
// Setup |
109 |
protected void onCreate(Bundle savedInstanceState) { |
|
110 |
super.onCreate(savedInstanceState); |
|
6599 | 111 |
|
10017 | 112 |
// So we can call stuff from static callbacks |
113 |
mSingleton = this; |
|
6599 | 114 |
|
10017 | 115 |
// Set up the surface |
116 |
mSurface = new SDLSurface(getApplication(), startConfig, startNetgame); |
|
117 |
startConfig = null; |
|
118 |
setContentView(mSurface); |
|
119 |
} |
|
6599 | 120 |
|
10017 | 121 |
// Events |
122 |
protected void onPause() { |
|
123 |
Log.v("SDL", "onPause()"); |
|
124 |
super.onPause(); |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
125 |
|
10017 | 126 |
if(mEGLDisplay != null && mEGLContext != null){ |
127 |
EGL10 egl = (EGL10)EGLContext.getEGL(); |
|
128 |
egl.eglDestroyContext(mEGLDisplay, mEGLContext); |
|
129 |
mEGLDisplay = null; |
|
130 |
mEGLContext = null; |
|
131 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
132 |
|
10017 | 133 |
SDLActivity.nativePause(); |
134 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
135 |
|
10017 | 136 |
protected void onResume() { |
137 |
Log.v("SDL", "onResume()"); |
|
138 |
super.onResume(); |
|
139 |
} |
|
6599 | 140 |
|
10017 | 141 |
protected void onDestroy() { |
142 |
super.onDestroy(); |
|
143 |
Log.v("SDL", "onDestroy()"); |
|
144 |
// Send a quit message to the application |
|
145 |
SDLActivity.nativeQuit(); |
|
146 |
// Now wait for the SDL thread to quit |
|
147 |
if (mSDLThread != null) { |
|
148 |
try { |
|
149 |
mSDLThread.join(); |
|
150 |
} catch(Exception e) { |
|
151 |
Log.w("SDL", "Problem stopping thread: " + e); |
|
152 |
} |
|
153 |
mSDLThread = null; |
|
154 |
} |
|
155 |
mSingleton = null; |
|
156 |
} |
|
157 |
||
158 |
public static void synchronizedNativeInit(String...args) { |
|
159 |
synchronized(PascalExports.engineMutex) { |
|
160 |
nativeInit(args); |
|
161 |
} |
|
162 |
} |
|
163 |
||
164 |
// C functions we call |
|
165 |
private static native void nativeInit(String...args); |
|
166 |
public static native void nativeQuit(); |
|
167 |
public static native void nativePause(); |
|
168 |
public static native void nativeResume(); |
|
169 |
public static native void onNativeResize(int x, int y, int format); |
|
170 |
public static native void onNativeKeyDown(int keycode); |
|
171 |
public static native void onNativeKeyUp(int keycode); |
|
172 |
public static native void onNativeTouch(int touchDevId, int pointerFingerId, |
|
173 |
int action, float x, |
|
174 |
float y, float p); |
|
175 |
public static native void onNativeAccel(float x, float y, float z); |
|
176 |
public static native void nativeRunAudioThread(); |
|
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
177 |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
178 |
|
10017 | 179 |
// Java functions called from C |
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
180 |
|
10017 | 181 |
public static boolean createGLContext(int majorVersion, int minorVersion) { |
182 |
return initEGL(majorVersion, minorVersion); |
|
183 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
184 |
|
10017 | 185 |
public static void flipBuffers() { |
186 |
flipEGL(); |
|
187 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
188 |
|
10017 | 189 |
public static void setActivityTitle(final String title) { |
190 |
// Called from SDLMain() thread and can't directly affect the view |
|
191 |
mSingleton.runOnUiThread(new Runnable() { |
|
192 |
public void run() { |
|
193 |
mSingleton.setTitle(title); |
|
194 |
} |
|
195 |
}); |
|
196 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
197 |
|
10017 | 198 |
public static Context getContext() { |
199 |
return mSingleton; |
|
200 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
201 |
|
10017 | 202 |
public static void startApp(final int width, final int height, GameConfig config, boolean netgame) { |
203 |
// Start up the C app thread |
|
204 |
if (mSDLThread == null) { |
|
205 |
mSDLThread = new Thread(new SDLMain(width, height, config, netgame)); |
|
206 |
mSDLThread.start(); |
|
207 |
} else { |
|
208 |
SDLActivity.nativeResume(); |
|
209 |
} |
|
210 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
211 |
|
10017 | 212 |
// EGL functions |
213 |
public static boolean initEGL(int majorVersion, int minorVersion) { |
|
214 |
if (SDLActivity.mEGLDisplay == null) { |
|
215 |
try { |
|
216 |
EGL10 egl = (EGL10)EGLContext.getEGL(); |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
217 |
|
10017 | 218 |
EGLDisplay dpy = egl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); |
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
219 |
|
10017 | 220 |
int[] version = new int[2]; |
221 |
egl.eglInitialize(dpy, version); |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
222 |
|
10017 | 223 |
int EGL_OPENGL_ES_BIT = 1; |
224 |
int EGL_OPENGL_ES2_BIT = 4; |
|
225 |
int renderableType = 0; |
|
226 |
if (majorVersion == 2) { |
|
227 |
renderableType = EGL_OPENGL_ES2_BIT; |
|
228 |
} else if (majorVersion == 1) { |
|
229 |
renderableType = EGL_OPENGL_ES_BIT; |
|
230 |
} |
|
231 |
int[] configSpec = { |
|
232 |
EGL10.EGL_RENDERABLE_TYPE, renderableType, |
|
233 |
EGL10.EGL_NONE |
|
234 |
}; |
|
235 |
EGLConfig[] configs = new EGLConfig[1]; |
|
236 |
int[] num_config = new int[1]; |
|
237 |
if (!egl.eglChooseConfig(dpy, configSpec, configs, 1, num_config) || num_config[0] == 0) { |
|
238 |
Log.e("SDL", "No EGL config available"); |
|
239 |
return false; |
|
240 |
} |
|
241 |
EGLConfig config = configs[0]; |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
242 |
|
10017 | 243 |
SDLActivity.mEGLDisplay = dpy; |
244 |
SDLActivity.mEGLConfig = config; |
|
245 |
SDLActivity.mGLMajor = majorVersion; |
|
246 |
SDLActivity.mGLMinor = minorVersion; |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
247 |
|
10017 | 248 |
SDLActivity.createEGLSurface(); |
249 |
} catch(Exception e) { |
|
250 |
Log.v("SDL", e + ""); |
|
251 |
for (StackTraceElement s : e.getStackTrace()) { |
|
252 |
Log.v("SDL", s.toString()); |
|
253 |
} |
|
254 |
} |
|
255 |
} |
|
256 |
else SDLActivity.createEGLSurface(); |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
257 |
|
10017 | 258 |
return true; |
259 |
} |
|
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
260 |
|
10017 | 261 |
public static boolean createEGLContext() { |
262 |
EGL10 egl = (EGL10)EGLContext.getEGL(); |
|
263 |
int EGL_CONTEXT_CLIENT_VERSION=0x3098; |
|
264 |
int contextAttrs[] = new int[] { EGL_CONTEXT_CLIENT_VERSION, SDLActivity.mGLMajor, EGL10.EGL_NONE }; |
|
265 |
SDLActivity.mEGLContext = egl.eglCreateContext(SDLActivity.mEGLDisplay, SDLActivity.mEGLConfig, EGL10.EGL_NO_CONTEXT, contextAttrs); |
|
266 |
if (SDLActivity.mEGLContext == EGL10.EGL_NO_CONTEXT) { |
|
267 |
Log.e("SDL", "Couldn't create context"); |
|
268 |
return false; |
|
269 |
} |
|
270 |
return true; |
|
271 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
272 |
|
10017 | 273 |
public static boolean createEGLSurface() { |
274 |
if (SDLActivity.mEGLDisplay != null && SDLActivity.mEGLConfig != null) { |
|
275 |
EGL10 egl = (EGL10)EGLContext.getEGL(); |
|
276 |
if (SDLActivity.mEGLContext == null) createEGLContext(); |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
277 |
|
10017 | 278 |
Log.v("SDL", "Creating new EGL Surface"); |
279 |
EGLSurface surface = egl.eglCreateWindowSurface(SDLActivity.mEGLDisplay, SDLActivity.mEGLConfig, SDLActivity.mSurface, null); |
|
280 |
if (surface == EGL10.EGL_NO_SURFACE) { |
|
281 |
Log.e("SDL", "Couldn't create surface"); |
|
282 |
return false; |
|
283 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
284 |
|
10017 | 285 |
if (!egl.eglMakeCurrent(SDLActivity.mEGLDisplay, surface, surface, SDLActivity.mEGLContext)) { |
286 |
Log.e("SDL", "Old EGL Context doesnt work, trying with a new one"); |
|
287 |
createEGLContext(); |
|
288 |
if (!egl.eglMakeCurrent(SDLActivity.mEGLDisplay, surface, surface, SDLActivity.mEGLContext)) { |
|
289 |
Log.e("SDL", "Failed making EGL Context current"); |
|
290 |
return false; |
|
291 |
} |
|
292 |
} |
|
293 |
SDLActivity.mEGLSurface = surface; |
|
294 |
return true; |
|
295 |
} |
|
296 |
return false; |
|
297 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
298 |
|
10017 | 299 |
// EGL buffer flip |
300 |
public static void flipEGL() { |
|
301 |
try { |
|
302 |
EGL10 egl = (EGL10)EGLContext.getEGL(); |
|
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
303 |
|
10017 | 304 |
egl.eglWaitNative(EGL10.EGL_CORE_NATIVE_ENGINE, null); |
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
305 |
|
10017 | 306 |
// drawing here |
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
307 |
|
10017 | 308 |
egl.eglWaitGL(); |
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
309 |
|
10017 | 310 |
egl.eglSwapBuffers(SDLActivity.mEGLDisplay, SDLActivity.mEGLSurface); |
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
311 |
|
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
312 |
|
10017 | 313 |
} catch(Exception e) { |
314 |
Log.v("SDL", "flipEGL(): " + e); |
|
315 |
for (StackTraceElement s : e.getStackTrace()) { |
|
316 |
Log.v("SDL", s.toString()); |
|
317 |
} |
|
318 |
} |
|
319 |
} |
|
6599 | 320 |
|
10017 | 321 |
// Audio |
322 |
private static Object buf; |
|
6599 | 323 |
|
10017 | 324 |
public static Object audioInit(int sampleRate, boolean is16Bit, boolean isStereo, int desiredFrames) { |
325 |
int channelConfig = isStereo ? AudioFormat.CHANNEL_CONFIGURATION_STEREO : AudioFormat.CHANNEL_CONFIGURATION_MONO; |
|
326 |
int audioFormat = is16Bit ? AudioFormat.ENCODING_PCM_16BIT : AudioFormat.ENCODING_PCM_8BIT; |
|
327 |
int frameSize = (isStereo ? 2 : 1) * (is16Bit ? 2 : 1); |
|
6599 | 328 |
|
10017 | 329 |
Log.v("SDL", "SDL audio: wanted " + (isStereo ? "stereo" : "mono") + " " + (is16Bit ? "16-bit" : "8-bit") + " " + ((float)sampleRate / 1000f) + "kHz, " + desiredFrames + " frames buffer"); |
6599 | 330 |
|
10017 | 331 |
// Let the user pick a larger buffer if they really want -- but ye |
332 |
// gods they probably shouldn't, the minimums are horrifyingly high |
|
333 |
// latency already |
|
334 |
desiredFrames = Math.max(desiredFrames, (AudioTrack.getMinBufferSize(sampleRate, channelConfig, audioFormat) + frameSize - 1) / frameSize); |
|
6599 | 335 |
|
10017 | 336 |
mAudioTrack = new AudioTrack(AudioManager.STREAM_MUSIC, sampleRate, |
337 |
channelConfig, audioFormat, desiredFrames * frameSize, AudioTrack.MODE_STREAM); |
|
6599 | 338 |
|
10017 | 339 |
audioStartThread(); |
6599 | 340 |
|
10017 | 341 |
Log.v("SDL", "SDL audio: got " + ((mAudioTrack.getChannelCount() >= 2) ? "stereo" : "mono") + " " + ((mAudioTrack.getAudioFormat() == AudioFormat.ENCODING_PCM_16BIT) ? "16-bit" : "8-bit") + " " + ((float)mAudioTrack.getSampleRate() / 1000f) + "kHz, " + desiredFrames + " frames buffer"); |
6599 | 342 |
|
10017 | 343 |
if (is16Bit) { |
344 |
buf = new short[desiredFrames * (isStereo ? 2 : 1)]; |
|
345 |
} else { |
|
346 |
buf = new byte[desiredFrames * (isStereo ? 2 : 1)]; |
|
347 |
} |
|
348 |
return buf; |
|
349 |
} |
|
6599 | 350 |
|
10017 | 351 |
public static void audioStartThread() { |
352 |
mAudioThread = new Thread(new Runnable() { |
|
353 |
public void run() { |
|
354 |
mAudioTrack.play(); |
|
355 |
nativeRunAudioThread(); |
|
356 |
} |
|
357 |
}); |
|
6599 | 358 |
|
10017 | 359 |
// I'd take REALTIME if I could get it! |
360 |
mAudioThread.setPriority(Thread.MAX_PRIORITY); |
|
361 |
mAudioThread.start(); |
|
362 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
363 |
|
10017 | 364 |
public static void audioWriteShortBuffer(short[] buffer) { |
365 |
for (int i = 0; i < buffer.length; ) { |
|
366 |
int result = mAudioTrack.write(buffer, i, buffer.length - i); |
|
367 |
if (result > 0) { |
|
368 |
i += result; |
|
369 |
} else if (result == 0) { |
|
370 |
try { |
|
371 |
Thread.sleep(1); |
|
372 |
} catch(InterruptedException e) { |
|
373 |
// Nom nom |
|
374 |
} |
|
375 |
} else { |
|
376 |
Log.w("SDL", "SDL audio: error return from write(short)"); |
|
377 |
return; |
|
378 |
} |
|
379 |
} |
|
380 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
381 |
|
10017 | 382 |
public static void audioWriteByteBuffer(byte[] buffer) { |
383 |
for (int i = 0; i < buffer.length; ) { |
|
384 |
int result = mAudioTrack.write(buffer, i, buffer.length - i); |
|
385 |
if (result > 0) { |
|
386 |
i += result; |
|
387 |
} else if (result == 0) { |
|
388 |
try { |
|
389 |
Thread.sleep(1); |
|
390 |
} catch(InterruptedException e) { |
|
391 |
// Nom nom |
|
392 |
} |
|
393 |
} else { |
|
394 |
Log.w("SDL", "SDL audio: error return from write(short)"); |
|
395 |
return; |
|
396 |
} |
|
397 |
} |
|
398 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
399 |
|
10017 | 400 |
public static void audioQuit() { |
401 |
if (mAudioThread != null) { |
|
402 |
try { |
|
403 |
mAudioThread.join(); |
|
404 |
} catch(Exception e) { |
|
405 |
Log.v("SDL", "Problem stopping audio thread: " + e); |
|
406 |
} |
|
407 |
mAudioThread = null; |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
408 |
|
10017 | 409 |
//Log.v("SDL", "Finished waiting for audio thread"); |
410 |
} |
|
6599 | 411 |
|
10017 | 412 |
if (mAudioTrack != null) { |
413 |
mAudioTrack.stop(); |
|
414 |
mAudioTrack = null; |
|
415 |
} |
|
416 |
} |
|
417 |
||
418 |
public static int getDensity(){ |
|
419 |
DisplayMetrics dm = SDLActivity.getContext().getResources().getDisplayMetrics(); |
|
420 |
return dm.densityDpi; |
|
421 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
422 |
} |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
423 |
|
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
424 |
/** |
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
425 |
Simple nativeInit() runnable |
6599 | 426 |
*/ |
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
427 |
class SDLMain implements Runnable { |
10017 | 428 |
public static final String TAG = "SDLMain"; |
429 |
||
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
430 |
public static final int RQ_LOWRES = 0x00000001; // use half land array |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
431 |
public static final int RQ_BLURRY_LAND = 0x00000002; // downscaled terrain |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
432 |
public static final int RQ_NO_BACKGROUND = 0x00000004; // don't draw background |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
433 |
public static final int RQ_SIMPLE_ROPE = 0x00000008; // avoid drawing rope |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
434 |
public static final int RQ_2D_WATER = 0x00000010; // disabe 3D water effect |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
435 |
public static final int RQ_SIMPLE_EXPLOSIONS = 0x00000020; // no fancy explosion effects |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
436 |
public static final int RQ_NO_FLAKES = 0x00000040; // no flakes |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
437 |
public static final int RQ_NO_MENU_ANIM = 0x00000080; // ammomenu appears with no animation |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
438 |
public static final int RQ_NO_DROPLETS = 0x00000100; // no droplets |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
439 |
public static final int RQ_NO_CLAMPING = 0x00000200; // don't clamp textures |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
440 |
public static final int RQ_NO_TOOLTIPS = 0x00000400; // tooltips are not drawn |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
441 |
public static final int RQ_NO_VSYNC = 0x00000800; // don't sync on vblank |
10017 | 442 |
|
443 |
private final int surfaceWidth, surfaceHeight; |
|
444 |
private final String playerName; |
|
445 |
private final GameConfig config; |
|
446 |
private final boolean netgame; |
|
447 |
||
448 |
public SDLMain(int width, int height, GameConfig config, boolean netgame) { |
|
449 |
surfaceWidth = width; |
|
450 |
surfaceHeight = height; |
|
451 |
if(netgame) { |
|
452 |
playerName = Netplay.getAppInstance(SDLActivity.getContext().getApplicationContext()).getPlayerName(); |
|
453 |
} else { |
|
454 |
playerName = "Player"; |
|
455 |
} |
|
456 |
this.config = config; |
|
457 |
this.netgame = netgame; |
|
458 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
459 |
|
10017 | 460 |
public void run() { |
461 |
//Set up the IPC socket server to communicate with the engine |
|
462 |
GameConnection gameConn; |
|
463 |
String path; |
|
464 |
try { |
|
465 |
if(netgame) { |
|
466 |
Netplay netplay = Netplay.getAppInstance(SDLActivity.mSingleton.getApplicationContext()); |
|
467 |
gameConn = GameConnection.forNetgame(config, netplay); |
|
468 |
} else { |
|
469 |
gameConn = GameConnection.forLocalGame(config); |
|
470 |
} |
|
471 |
||
472 |
path = FileUtils.getDataPathFile(SDLActivity.mSingleton).getAbsolutePath(); |
|
473 |
Log.d(TAG, "Starting engine"); |
|
474 |
// Runs SDL_main() with added parameters |
|
475 |
try { |
|
476 |
String pPort = String.valueOf(gameConn.port); |
|
477 |
String pWidth = String.valueOf(surfaceWidth); |
|
478 |
String pHeight = String.valueOf(surfaceHeight); |
|
479 |
String pQuality = Integer.toString(RQ_NO_FLAKES|RQ_NO_DROPLETS|RQ_SIMPLE_EXPLOSIONS); |
|
480 |
String pPlayerName = Base64.encodeToString(playerName.getBytes("UTF-8"), 0); |
|
481 |
SDLActivity.synchronizedNativeInit(new String[] { pPort, pWidth, pHeight, pQuality, "en.txt", pPlayerName, "1", "1", "1", path, "" }); |
|
482 |
} catch (UnsupportedEncodingException e) { |
|
483 |
throw new AssertionError(e); // never happens |
|
484 |
} |
|
485 |
Log.d(TAG, "Engine stopped"); |
|
486 |
} catch(ConnectException e) { |
|
487 |
Log.e(TAG, "Error starting IPC connection"); |
|
488 |
} catch (IOException e) { |
|
489 |
Log.e(TAG, "Missing SDCard"); |
|
490 |
} |
|
491 |
SDLActivity.mSingleton.runOnUiThread(new Runnable() { public void run() { |
|
492 |
if(SDLActivity.mSingleton != null) { |
|
493 |
SDLActivity.mSingleton.finish(); |
|
494 |
} |
|
495 |
}}); |
|
496 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
497 |
} |
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
498 |
|
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
499 |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
500 |
/** |
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
501 |
SDLSurface. This is what we draw on, so we need to know when it's created |
10017 | 502 |
in order to do anything useful. |
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
503 |
|
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
504 |
Because of this, that's where we set up the SDL thread |
6599 | 505 |
*/ |
10017 | 506 |
class SDLSurface extends SurfaceView implements SurfaceHolder.Callback, |
6599 | 507 |
View.OnKeyListener, View.OnTouchListener, SensorEventListener { |
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
508 |
|
10017 | 509 |
private GameConfig config; |
510 |
private boolean netgame; |
|
511 |
||
512 |
// Sensors |
|
513 |
private static SensorManager mSensorManager; |
|
6599 | 514 |
|
10017 | 515 |
// Startup |
516 |
public SDLSurface(Context context, GameConfig _config, boolean netgame) { |
|
517 |
super(context); |
|
518 |
getHolder().addCallback(this); |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
519 |
|
10017 | 520 |
setFocusable(true); |
521 |
setFocusableInTouchMode(true); |
|
522 |
requestFocus(); |
|
523 |
setOnKeyListener(this); |
|
524 |
setOnTouchListener(this); |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
525 |
|
10017 | 526 |
mSensorManager = (SensorManager)context.getSystemService("sensor"); |
527 |
config = _config; |
|
528 |
this.netgame = netgame; |
|
529 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
530 |
|
10017 | 531 |
// Called when we have a valid drawing surface |
532 |
public void surfaceCreated(SurfaceHolder holder) { |
|
533 |
Log.v("SDL", "surfaceCreated()"); |
|
534 |
holder.setType(SurfaceHolder.SURFACE_TYPE_GPU); |
|
535 |
SDLActivity.createEGLSurface(); |
|
536 |
// enableSensor(Sensor.TYPE_ACCELEROMETER, true); |
|
537 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
538 |
|
10017 | 539 |
// Called when we lose the surface |
540 |
public void surfaceDestroyed(SurfaceHolder holder) { |
|
541 |
Log.v("SDL", "surfaceDestroyed()"); |
|
542 |
SDLActivity.nativePause(); |
|
543 |
// enableSensor(Sensor.TYPE_ACCELEROMETER, false); |
|
544 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
545 |
|
10017 | 546 |
// Called when the surface is resized |
547 |
public void surfaceChanged(SurfaceHolder holder, |
|
548 |
int format, int width, int height) { |
|
549 |
Log.v("SDL", "surfaceChanged()"); |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
550 |
|
10017 | 551 |
int sdlFormat = 0x85151002; // SDL_PIXELFORMAT_RGB565 by default |
552 |
switch (format) { |
|
553 |
case PixelFormat.A_8: |
|
554 |
Log.v("SDL", "pixel format A_8"); |
|
555 |
break; |
|
556 |
case PixelFormat.LA_88: |
|
557 |
Log.v("SDL", "pixel format LA_88"); |
|
558 |
break; |
|
559 |
case PixelFormat.L_8: |
|
560 |
Log.v("SDL", "pixel format L_8"); |
|
561 |
break; |
|
562 |
case PixelFormat.RGBA_4444: |
|
563 |
Log.v("SDL", "pixel format RGBA_4444"); |
|
564 |
sdlFormat = 0x85421002; // SDL_PIXELFORMAT_RGBA4444 |
|
565 |
break; |
|
566 |
case PixelFormat.RGBA_5551: |
|
567 |
Log.v("SDL", "pixel format RGBA_5551"); |
|
568 |
sdlFormat = 0x85441002; // SDL_PIXELFORMAT_RGBA5551 |
|
569 |
break; |
|
570 |
case PixelFormat.RGBA_8888: |
|
571 |
Log.v("SDL", "pixel format RGBA_8888"); |
|
572 |
sdlFormat = 0x86462004; // SDL_PIXELFORMAT_RGBA8888 |
|
573 |
break; |
|
574 |
case PixelFormat.RGBX_8888: |
|
575 |
Log.v("SDL", "pixel format RGBX_8888"); |
|
576 |
sdlFormat = 0x86262004; // SDL_PIXELFORMAT_RGBX8888 |
|
577 |
break; |
|
578 |
case PixelFormat.RGB_332: |
|
579 |
Log.v("SDL", "pixel format RGB_332"); |
|
580 |
sdlFormat = 0x84110801; // SDL_PIXELFORMAT_RGB332 |
|
581 |
break; |
|
582 |
case PixelFormat.RGB_565: |
|
583 |
Log.v("SDL", "pixel format RGB_565"); |
|
584 |
sdlFormat = 0x85151002; // SDL_PIXELFORMAT_RGB565 |
|
585 |
break; |
|
586 |
case PixelFormat.RGB_888: |
|
587 |
Log.v("SDL", "pixel format RGB_888"); |
|
588 |
// Not sure this is right, maybe SDL_PIXELFORMAT_RGB24 instead? |
|
589 |
sdlFormat = 0x86161804; // SDL_PIXELFORMAT_RGB888 |
|
590 |
break; |
|
591 |
default: |
|
592 |
Log.v("SDL", "pixel format unknown " + format); |
|
593 |
break; |
|
594 |
} |
|
595 |
SDLActivity.onNativeResize(width, height, sdlFormat); |
|
596 |
Log.v("SDL", "Window size:" + width + "x"+height); |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
597 |
|
10017 | 598 |
SDLActivity.startApp(width, height, config, netgame); |
599 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
600 |
|
10017 | 601 |
// unused |
602 |
public void onDraw(Canvas canvas) {} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
603 |
|
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
604 |
|
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
605 |
|
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
606 |
|
10017 | 607 |
// Key events |
608 |
public boolean onKey(View v, int keyCode, KeyEvent event) { |
|
609 |
switch(keyCode){ |
|
610 |
case KeyEvent.KEYCODE_BACK: |
|
611 |
Log.d("SDL", "KEYCODE_BACK"); |
|
612 |
SDLActivity.nativeQuit(); |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7568
diff
changeset
|
613 |
return true; |
10017 | 614 |
case KeyEvent.KEYCODE_VOLUME_DOWN: |
615 |
case KeyEvent.KEYCODE_VOLUME_UP: |
|
616 |
case KeyEvent.KEYCODE_VOLUME_MUTE: |
|
617 |
return false; |
|
618 |
} |
|
619 |
if (event.getAction() == KeyEvent.ACTION_DOWN) { |
|
620 |
//Log.v("SDL", "key down: " + keyCode); |
|
621 |
SDLActivity.onNativeKeyDown(keyCode); |
|
622 |
return true; |
|
623 |
} |
|
624 |
else if (event.getAction() == KeyEvent.ACTION_UP) { |
|
625 |
//Log.v("SDL", "key up: " + keyCode); |
|
626 |
SDLActivity.onNativeKeyUp(keyCode); |
|
627 |
return true; |
|
628 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
629 |
|
10017 | 630 |
return false; |
631 |
} |
|
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
632 |
|
10017 | 633 |
// Touch events |
634 |
public boolean onTouch(View v, MotionEvent event) { |
|
635 |
final int action = event.getAction() & MotionEvent.ACTION_MASK; |
|
636 |
final int actionPointerIndex = (event.getAction() & MotionEvent.ACTION_POINTER_ID_MASK) >> MotionEvent.ACTION_POINTER_INDEX_SHIFT; |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
637 |
|
10017 | 638 |
if (action == MotionEvent.ACTION_MOVE) { |
639 |
// TODO send motion to every pointer if its position has |
|
640 |
// changed since prev event. |
|
641 |
for (int i = 0; i < event.getPointerCount(); i++) { |
|
642 |
sendNativeTouch(event, action, i); |
|
643 |
} |
|
644 |
} else { |
|
645 |
sendNativeTouch(event, action, actionPointerIndex); |
|
646 |
} |
|
647 |
return true; |
|
648 |
} |
|
649 |
||
650 |
private static void sendNativeTouch(MotionEvent event, int action, int pointerIndex) { |
|
651 |
int touchDevId = event.getDeviceId(); |
|
652 |
int pointerFingerId = event.getPointerId(pointerIndex); |
|
653 |
float x = event.getX(pointerIndex); |
|
654 |
float y = event.getY(pointerIndex); |
|
655 |
float pressure = event.getPressure(pointerIndex); |
|
656 |
SDLActivity.onNativeTouch(touchDevId, pointerFingerId, action, x, y, pressure); |
|
657 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
658 |
|
10017 | 659 |
// Sensor events |
660 |
public void enableSensor(int sensortype, boolean enabled) { |
|
661 |
// TODO: This uses getDefaultSensor - what if we have >1 accels? |
|
662 |
if (enabled) { |
|
663 |
mSensorManager.registerListener(this, |
|
664 |
mSensorManager.getDefaultSensor(sensortype), |
|
665 |
SensorManager.SENSOR_DELAY_GAME, null); |
|
666 |
} else { |
|
667 |
mSensorManager.unregisterListener(this, |
|
668 |
mSensorManager.getDefaultSensor(sensortype)); |
|
669 |
} |
|
670 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
671 |
|
10017 | 672 |
public void onAccuracyChanged(Sensor sensor, int accuracy) { |
673 |
// TODO |
|
674 |
} |
|
6599 | 675 |
|
10017 | 676 |
public void onSensorChanged(SensorEvent event) { |
677 |
if (event.sensor.getType() == Sensor.TYPE_ACCELEROMETER) { |
|
678 |
SDLActivity.onNativeAccel(event.values[0] / SensorManager.GRAVITY_EARTH, |
|
679 |
event.values[1] / SensorManager.GRAVITY_EARTH, |
|
680 |
event.values[2] / SensorManager.GRAVITY_EARTH); |
|
681 |
} |
|
682 |
} |
|
6047
10011f051f9c
Changed package name from org.hedgewars.mobile to org.hedgewars.hedgeroid to upload it to the market
Xeli
parents:
diff
changeset
|
683 |
} |
6597
814683bbd230
added TARDIS to minimal data dir, changed a couple of org_libsdl_app to org_hedgewars_hedgeroid in SDL_android.cpp and updated SDLActivity.java
Xeli
parents:
6487
diff
changeset
|
684 |