This commit is contained in:
Robert Vokac 2024-12-15 17:48:29 +01:00
parent 59b6cd33c3
commit 8554fc991e
247 changed files with 38845 additions and 56 deletions

1
.gitignore vendored
View File

@ -240,3 +240,4 @@ ModelManifest.xml
# FAKE - F# Make
.fake/
rv.keystore

15
Accelerometer.cs Normal file
View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsPhoneSpeedyBlupi
{
public interface Accelerometer
{
void Start();
void Stop();
event EventHandler<AccelerometerEventArgs> CurrentValueChanged;
}
}

23
AccelerometerDummyImpl.cs Normal file
View File

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsPhoneSpeedyBlupi
{
public class AccelerometerDummyImpl : Accelerometer
{
public event EventHandler<AccelerometerEventArgs> CurrentValueChanged;
public void Start()
{
//throw new AccelerometerFailedException();
}
public void Stop()
{
//throw new AccelerometerFailedException();
}
}
}

23
AccelerometerEventArgs.cs Normal file
View File

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsPhoneSpeedyBlupi
{
public class AccelerometerEventArgs : EventArgs
{
public float X { get; }
public float Y { get; }
public float Z { get; }
public AccelerometerEventArgs(float x, float y, float z)
{
X = x;
Y = y;
Z = z;
}
}
}

13
AccelerometerFactory.cs Normal file
View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsPhoneSpeedyBlupi
{
public class AccelerometerFactory
{
public static Accelerometer Create() { return new AccelerometerDummyImpl(); }
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsPhoneSpeedyBlupi
{
public class AccelerometerFailedException : Exception
{
}
}

View File

@ -4,7 +4,7 @@ using Android.OS;
using Android.Views;
using Microsoft.Xna.Framework;
namespace sb2013
namespace WindowsPhoneSpeedyBlupi
{
[Activity(
Label = "@string/app_name",

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 691 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 401 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 638 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 470 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 479 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 329 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 565 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 702 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 393 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 670 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 824 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 412 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 380 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 KiB

BIN
Content/backgrounds/win.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 KiB

BIN
Content/icons/blupi.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 814 KiB

BIN
Content/icons/blupi1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 852 KiB

BIN
Content/icons/button.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

BIN
Content/icons/element.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 535 KiB

BIN
Content/icons/explo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 909 KiB

BIN
Content/icons/jauge.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
Content/icons/object-m.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

BIN
Content/icons/pad.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

BIN
Content/icons/text.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
Content/sounds/sound000.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound001.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound002.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound003.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound004.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound005.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound006.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound007.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound008.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound009.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound010.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound011.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound012.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound013.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound014.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound015.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound016.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound017.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound018.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound019.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound020.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound021.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound022.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound023.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound024.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound025.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound026.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound027.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound028.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound029.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound030.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound031.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound032.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound033.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound034.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound035.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound036.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound037.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound038.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound039.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound040.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound041.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound042.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound043.wav Normal file

Binary file not shown.

BIN
Content/sounds/sound044.wav Normal file

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More