mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-04-04 23:51:33 +00:00
Merge branch 'master' into feature_openxr
This commit is contained in:
commit
1054844524
14 changed files with 35 additions and 35 deletions
|
@ -2,8 +2,8 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.drbeef.ioq3quest"
|
||||
android:installLocation="preferExternal"
|
||||
android:versionCode="47"
|
||||
android:versionName="0.31.2">
|
||||
android:versionCode="49"
|
||||
android:versionName="0.31.4">
|
||||
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" />
|
||||
<uses-feature android:glEsVersion="0x00030001" />
|
||||
<!-- <uses-feature android:name="oculus.software.overlay_keyboard" android:required="false"/>-->
|
||||
|
@ -17,6 +17,7 @@
|
|||
<application
|
||||
android:allowBackup="false"
|
||||
android:fullBackupContent="false"
|
||||
android:requestLegacyExternalStorage="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:hasCode="true">
|
||||
|
|
Binary file not shown.
|
@ -1217,6 +1217,10 @@ void CG_EntityEvent( centity_t *cent, vec3_t position ) {
|
|||
trap_S_StartSound(NULL, es->number, CHAN_VOICE, CG_CustomSound(es->number, va("*death%i.wav", event - EV_DEATH1 + 1)));
|
||||
}
|
||||
|
||||
if(es->clientNum == cg.snap->ps.clientNum)
|
||||
{
|
||||
trap_HapticEvent("fireball", 0, 0, 100, 0, 0);
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
|
|
|
@ -97,7 +97,7 @@ void CG_DamageFeedback( int yawByte, int pitchByte, int damage ) {
|
|||
vec3_t dir;
|
||||
vec3_t angles;
|
||||
float dist;
|
||||
float yaw, pitch;
|
||||
float yaw=0, pitch=0;
|
||||
|
||||
// show the attacking player's head and name in corner
|
||||
cg.attackerTime = cg.time;
|
||||
|
|
|
@ -391,26 +391,6 @@ void RB_BeginDrawingView (void) {
|
|||
|
||||
// we will only draw a sun if there was sky rendered in this view
|
||||
backEnd.skyRenderedThisView = qfalse;
|
||||
|
||||
// clip to the plane of the portal
|
||||
if ( backEnd.viewParms.isPortal ) {
|
||||
#if 0
|
||||
float plane[4];
|
||||
GLdouble plane2[4];
|
||||
|
||||
plane[0] = backEnd.viewParms.portalPlane.normal[0];
|
||||
plane[1] = backEnd.viewParms.portalPlane.normal[1];
|
||||
plane[2] = backEnd.viewParms.portalPlane.normal[2];
|
||||
plane[3] = backEnd.viewParms.portalPlane.dist;
|
||||
|
||||
plane2[0] = DotProduct (backEnd.viewParms.or.axis[0], plane);
|
||||
plane2[1] = DotProduct (backEnd.viewParms.or.axis[1], plane);
|
||||
plane2[2] = DotProduct (backEnd.viewParms.or.axis[2], plane);
|
||||
plane2[3] = DotProduct (plane, backEnd.viewParms.or.origin) - plane[3];
|
||||
#endif
|
||||
|
||||
GL_SetModelMatrix( s_flipMatrix );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -68,6 +68,7 @@ typedef enum {
|
|||
HUDBUFFER_ORTHO_PROJECTION, // Orthographic projection and no stereo view for the HUD buffer
|
||||
STEREO_ORTHO_PROJECTION, // Orthographic projection with a slight stereo offset per eye for the static hud
|
||||
VR_PROJECTION,
|
||||
MIRROR_VR_PROJECTION, // For mirrors etc
|
||||
MONO_VR_PROJECTION,
|
||||
|
||||
PROJECTION_COUNT
|
||||
|
@ -226,6 +227,7 @@ static void GLSL_ViewMatricesUniformBuffer(const float eyeView[32], const float
|
|||
Mat4Translation( translate, viewMatrices + 16 );
|
||||
}
|
||||
break;
|
||||
case MIRROR_VR_PROJECTION:
|
||||
case VR_PROJECTION:
|
||||
{
|
||||
Mat4Copy(eyeView, viewMatrices);
|
||||
|
@ -1683,7 +1685,6 @@ void GLSL_ShutdownGPUShaders(void)
|
|||
qglDeleteBuffers(PROJECTION_COUNT, projectionMatricesBuffer);
|
||||
}
|
||||
|
||||
|
||||
void GLSL_PrepareUniformBuffers(void)
|
||||
{
|
||||
int width, height;
|
||||
|
@ -1715,6 +1716,10 @@ void GLSL_PrepareUniformBuffers(void)
|
|||
GLSL_ProjectionMatricesUniformBuffer(projectionMatricesBuffer[VR_PROJECTION],
|
||||
tr.vrParms.projection);
|
||||
|
||||
//Mirror VR projection matrix
|
||||
GLSL_ProjectionMatricesUniformBuffer(projectionMatricesBuffer[MIRROR_VR_PROJECTION],
|
||||
tr.vrParms.mirrorProjection);
|
||||
|
||||
//Used for drawing models
|
||||
GLSL_ProjectionMatricesUniformBuffer(projectionMatricesBuffer[MONO_VR_PROJECTION],
|
||||
tr.vrParms.monoVRProjection);
|
||||
|
@ -1741,6 +1746,11 @@ void GLSL_BindProgram(shaderProgram_t * program)
|
|||
static GLuint GLSL_CalculateProjection() {
|
||||
GLuint result = glState.isDrawingHUD ? MONO_VR_PROJECTION : VR_PROJECTION;
|
||||
|
||||
if (backEnd.viewParms.isPortal)
|
||||
{
|
||||
result = MIRROR_VR_PROJECTION;
|
||||
}
|
||||
|
||||
if (Mat4Compare(&orthoProjectionMatrix, glState.projection))
|
||||
{
|
||||
if (glState.isDrawingHUD)
|
||||
|
|
|
@ -851,6 +851,7 @@ typedef struct {
|
|||
typedef struct {
|
||||
qboolean valid;
|
||||
float projection[16];
|
||||
float mirrorProjection[16];
|
||||
float monoVRProjection[16];
|
||||
int renderBuffer;
|
||||
int renderBufferOriginal;
|
||||
|
|
|
@ -783,6 +783,8 @@ void R_SetupProjectionZ(viewParms_t *dest)
|
|||
float plane2[4];
|
||||
vec4_t q, c;
|
||||
|
||||
Mat4Copy(tr.vrParms.projection, tr.vrParms.mirrorProjection);
|
||||
|
||||
// transform portal plane into camera space
|
||||
plane[0] = dest->portalPlane.normal[0];
|
||||
plane[1] = dest->portalPlane.normal[1];
|
||||
|
@ -803,11 +805,10 @@ void R_SetupProjectionZ(viewParms_t *dest)
|
|||
|
||||
VectorScale4(plane2, 2.0f / DotProduct4(plane2, q), c);
|
||||
|
||||
dest->projectionMatrix[2] = c[0];
|
||||
dest->projectionMatrix[6] = c[1];
|
||||
dest->projectionMatrix[10] = c[2] + 1.0f;
|
||||
dest->projectionMatrix[14] = c[3];
|
||||
|
||||
tr.vrParms.mirrorProjection[2] = c[0];
|
||||
tr.vrParms.mirrorProjection[6] = c[1];
|
||||
tr.vrParms.mirrorProjection[10] = c[2] + 1.0f;
|
||||
tr.vrParms.mirrorProjection[14] = c[3];
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -320,6 +320,11 @@ engine_t* VR_GetEngine( void ) {
|
|||
return &vr_engine;
|
||||
}
|
||||
|
||||
int VR_isPauseable( void )
|
||||
{
|
||||
return ( clc.state == CA_ACTIVE) && !Cvar_VariableValue ("cl_paused");
|
||||
}
|
||||
|
||||
int VR_useScreenLayer( void )
|
||||
{
|
||||
//intermission is never full screen
|
||||
|
|
|
@ -13,6 +13,7 @@ void VR_LeaveVR( engine_t* engine );
|
|||
|
||||
engine_t* VR_GetEngine( void );
|
||||
int VR_useScreenLayer( void );
|
||||
int VR_isPauseable( void );
|
||||
|
||||
float radians(float deg);
|
||||
|
||||
|
|
|
@ -471,7 +471,7 @@ void VR_HapticEvent(const char* event, int position, int flags, int intensity, f
|
|||
|
||||
engine_t* engine = VR_GetEngine();
|
||||
jstring StringArg1 = (*(engine->java.Env))->NewStringUTF(engine->java.Env, event);
|
||||
(*(engine->java.Env))->CallVoidMethod(engine->java.Env, engine->java.ActivityObject, android_haptic_event, StringArg1, position, flags, intensity * vr_hapticIntensity->value, angle, yHeight);
|
||||
(*(engine->java.Env))->CallVoidMethod(engine->java.Env, engine->java.ActivityObject, android_haptic_event, StringArg1, position, flags, (int)(intensity * vr_hapticIntensity->value), angle, yHeight);
|
||||
|
||||
//Controller Haptic Support
|
||||
int weaponFireChannel = vr.weapon_stabilised ? 3 : (vr_righthanded->integer ? 2 : 1);
|
||||
|
|
|
@ -85,7 +85,7 @@ int main(int argc, char* argv[]) {
|
|||
while (1) {
|
||||
if (hasFocus != g_HasFocus) {
|
||||
hasFocus = g_HasFocus;
|
||||
if (!hasFocus && !Cvar_VariableValue ("cl_paused")) {
|
||||
if (!hasFocus && VR_isPauseable()) {
|
||||
Com_QueueEvent( Sys_Milliseconds(), SE_KEY, K_ESCAPE, qtrue, 0, NULL );
|
||||
//Com_QueueEvent( Sys_Milliseconds(), SE_KEY, K_CONSOLE, qtrue, 0, NULL );
|
||||
paused = qtrue;
|
||||
|
|
|
@ -104,9 +104,6 @@ public class MainActivity extends SDLActivity // implements KeyEvent.Callback
|
|||
copy_asset("/sdcard/ioquake3Quest/baseq3", "pakQ3Q.pk3", true);
|
||||
copy_asset("/sdcard/ioquake3Quest/missionpack", "pakQ3Q.pk3", true);
|
||||
|
||||
//Copy omarlego's background image pak
|
||||
copy_asset("/sdcard/ioquake3Quest/baseq3", "pak66.pk3", false);
|
||||
|
||||
//If open arena is installed then copy necessary stuff
|
||||
if (new File("/sdcard/ioquake3Quest/baseoa").exists()) {
|
||||
copy_asset("/sdcard/ioquake3Quest/baseoa", "autoexec_oa.cfg", "autoexec.cfg", false);
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
setlocal
|
||||
|
||||
set BUILD_TYPE=release
|
||||
set VERSION=0.31.2-multiview
|
||||
set VERSION=0.31.4-multiview
|
||||
|
||||
@REM Define the following environment variables to sign a release build
|
||||
@REM set KEYSTORE=
|
||||
|
|
Loading…
Reference in a new issue