Compare commits

..

No commits in common. "1cbc13415b768085b7f5c97fbf35a773d7f14a8e" and "e1a420053cd8bf4a3d4b592040224f6b5c54a644" have entirely different histories.

3 changed files with 38 additions and 58 deletions

View File

@ -1,19 +1,15 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
using static WindowsPhoneSpeedyBlupi.EnvClasses;
namespace WindowsPhoneSpeedyBlupi namespace WindowsPhoneSpeedyBlupi
{ {
public static class DDebug public static class DDebug
{ {
private static bool detailedDebugging = false; private static bool DETAILED_DEBUGGING { get; set; }
private static bool DetailedDebugging
{
get { return detailedDebugging; }
set { detailedDebugging = value; }
}
public static void WriteLine(String msg) public static void WriteLine(String msg)
{ {
if (detailedDebugging) if (DETAILED_DEBUGGING)
{ {
Debug.WriteLine(msg); Debug.WriteLine(msg);
} }

View File

@ -309,7 +309,7 @@ namespace WindowsPhoneSpeedyBlupi
} }
KeyboardState newKeyboardState = Keyboard.GetState(); KeyboardState newKeyboardState = Keyboard.GetState();
Keys[] keysToBeChecked = new Keys[7] { Keys.LeftControl, Keys.Up, Keys.Right, Keys.Down, Keys.Left, Keys.Space, Keys.Escape,}; Keys[] keysToBeChecked = new Keys[6] { Keys.LeftControl, Keys.Up, Keys.Right, Keys.Down, Keys.Left, Keys.Space };
foreach(Keys keys in keysToBeChecked) { foreach(Keys keys in keysToBeChecked) {
if (newKeyboardState.IsKeyDown(keys)) touchesOrClicks.Add(new TinyPoint(-1, (int)keys)); if (newKeyboardState.IsKeyDown(keys)) touchesOrClicks.Add(new TinyPoint(-1, (int)keys));
} }
@ -360,7 +360,6 @@ namespace WindowsPhoneSpeedyBlupi
{ {
case Keys.LeftControl: pressedGlyph = Def.ButtonGlyph.PlayJump; pressedGlyphs.Add(pressedGlyph); break; case Keys.LeftControl: pressedGlyph = Def.ButtonGlyph.PlayJump; pressedGlyphs.Add(pressedGlyph); break;
case Keys.Space: pressedGlyph = Def.ButtonGlyph.PlayAction; pressedGlyphs.Add(pressedGlyph); break; case Keys.Space: pressedGlyph = Def.ButtonGlyph.PlayAction; pressedGlyphs.Add(pressedGlyph); break;
case Keys.Escape: pressedGlyph = Def.ButtonGlyph.PlayPause; pressedGlyphs.Add(pressedGlyph); break;
} }
} }

View File

@ -4,7 +4,6 @@ using System;
using System.Diagnostics; using System.Diagnostics;
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input.Touch;
using WindowsPhoneSpeedyBlupi; using WindowsPhoneSpeedyBlupi;
using static System.Net.Mime.MediaTypeNames; using static System.Net.Mime.MediaTypeNames;
using static WindowsPhoneSpeedyBlupi.Def; using static WindowsPhoneSpeedyBlupi.Def;
@ -383,35 +382,21 @@ namespace WindowsPhoneSpeedyBlupi
DrawIcon(channel, icon, rect, opacity, 0.0, useHotSpot); DrawIcon(channel, icon, rect, opacity, 0.0, useHotSpot);
} }
public void DrawIcon(int channel, int icon, TinyRect rect, double opacity, double rotationDeg, bool useHotSpot) public void DrawIcon(int channel, int icon, TinyRect rect, double opacity, double rotation, bool useHotSpot)
{ {
if (icon == -1) if (icon == -1)
{ {
return; return;
} }
if (channel == 14 && !TouchPanel.GetCapabilities().IsConnected)
{
int[] padGameplayIconNumbers = new int[] { 0, 1, 2, 3, 30, 12, 23 };
foreach (int iconNumber in padGameplayIconNumbers)
{
if(iconNumber == icon)
{
if(iconNumber == 1 && rect.LeftX > 100) { continue; }
//Touch display is not connected and the icon is a gameplay icon. Nothing to do.
return;
}
}
}
Texture2D bitmap = GetBitmap(channel); Texture2D bitmap = GetBitmap(channel);
if (bitmap == null) if (bitmap == null)
{ {
return; return;
} }
int bitmapGridX; int num;
int bitmapGridY; int bitmapGridY;
int iconWidth; int iconWidth;
int iconHeight; int num2;
int gap; int gap;
switch (channel) switch (channel)
{ {
@ -419,95 +404,95 @@ namespace WindowsPhoneSpeedyBlupi
case 11: case 11:
case 12: case 12:
case 13: case 13:
bitmapGridX = 60; num = 60;
bitmapGridY = 60; bitmapGridY = 60;
iconWidth = 60; iconWidth = 60;
iconHeight = 60; num2 = 60;
gap = 0; gap = 0;
break; break;
case 1: case 1:
bitmapGridX = 64; num = 64;
bitmapGridY = 64; bitmapGridY = 64;
iconWidth = 64; iconWidth = 64;
iconHeight = 64; num2 = 64;
gap = 1; gap = 1;
break; break;
case 10: case 10:
bitmapGridX = 60; num = 60;
bitmapGridY = 60; bitmapGridY = 60;
iconWidth = 60; iconWidth = 60;
iconHeight = 60; num2 = 60;
gap = 0; gap = 0;
break; break;
case 9: case 9:
bitmapGridX = 144; num = 144;
bitmapGridY = 144; bitmapGridY = 144;
iconHeight = Tables.table_explo_size[icon]; num2 = Tables.table_explo_size[icon];
iconWidth = Math.Max(iconHeight, 128); iconWidth = Math.Max(num2, 128);
gap = 0; gap = 0;
break; break;
case 6: case 6:
bitmapGridX = 32; num = 32;
bitmapGridY = 32; bitmapGridY = 32;
iconWidth = 32; iconWidth = 32;
iconHeight = 32; num2 = 32;
gap = 0; gap = 0;
break; break;
case 4: case 4:
bitmapGridX = 40; num = 40;
bitmapGridY = 40; bitmapGridY = 40;
iconWidth = 40; iconWidth = 40;
iconHeight = 40; num2 = 40;
gap = 0; gap = 0;
break; break;
case 14: case 14:
bitmapGridX = 140; num = 140;
bitmapGridY = 140; bitmapGridY = 140;
iconWidth = 140; iconWidth = 140;
iconHeight = 140; num2 = 140;
gap = 0; gap = 0;
break; break;
case 15: case 15:
bitmapGridX = 640; num = 640;
bitmapGridY = 160; bitmapGridY = 160;
iconWidth = 640; iconWidth = 640;
iconHeight = 160; num2 = 160;
gap = 0; gap = 0;
break; break;
case 16: case 16:
bitmapGridX = 410; num = 410;
bitmapGridY = 380; bitmapGridY = 380;
iconWidth = 410; iconWidth = 410;
iconHeight = 380; num2 = 380;
gap = 0; gap = 0;
break; break;
case 17: case 17:
bitmapGridX = 226; num = 226;
bitmapGridY = 226; bitmapGridY = 226;
iconWidth = 226; iconWidth = 226;
iconHeight = 226; num2 = 226;
gap = 0; gap = 0;
break; break;
default: default:
bitmapGridX = 0; num = 0;
bitmapGridY = 0; bitmapGridY = 0;
iconWidth = 0; iconWidth = 0;
iconHeight = 0; num2 = 0;
gap = 0; gap = 0;
break; break;
} }
if (bitmapGridX != 0) if (num != 0)
{ {
Rectangle srcRectangle = GetSrcRectangle(bitmap, bitmapGridX, bitmapGridY, iconWidth, iconHeight, gap, icon); Rectangle srcRectangle = GetSrcRectangle(bitmap, num, bitmapGridY, iconWidth, num2, gap, icon);
Rectangle rectangle = GetDstRectangle(rect, iconWidth, iconHeight, useHotSpot); Rectangle rectangle = GetDstRectangle(rect, iconWidth, num2, useHotSpot);
float rotationRad = 0f; float num3 = 0f;
if (rotationDeg != 0.0) if (rotation != 0.0)
{ {
rotationRad = (float)Misc.DegToRad(rotationDeg); num3 = (float)Misc.DegToRad(rotation);
rectangle = Misc.RotateAdjust(rectangle, rotationRad); rectangle = Misc.RotateAdjust(rectangle, num3);
} }
spriteBatch.Begin(SpriteSortMode.BackToFront, BlendState.AlphaBlend); spriteBatch.Begin(SpriteSortMode.BackToFront, BlendState.AlphaBlend);
spriteBatch.Draw(bitmap, rectangle, srcRectangle, Color.FromNonPremultiplied(255, 255, 255, (int)(255.0 * opacity)), rotationRad, origin, effect, 0f); spriteBatch.Draw(bitmap, rectangle, srcRectangle, Color.FromNonPremultiplied(255, 255, 255, (int)(255.0 * opacity)), num3, origin, effect, 0f);
spriteBatch.End(); spriteBatch.End();
} }
} }