mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-12-24 15:41:49 +01:00
Merge branch 'jay' into vigem-udpserver
This commit is contained in:
commit
24403394ad
@ -24,6 +24,8 @@ namespace DS4Windows
|
||||
}
|
||||
|
||||
protected Int32 Scale(Int32 Value, Boolean Flip)
|
||||
{
|
||||
unchecked
|
||||
{
|
||||
Value -= 0x80;
|
||||
|
||||
@ -33,6 +35,7 @@ namespace DS4Windows
|
||||
|
||||
return (Int32)(temp * outputResolution + (-32768));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public X360Device()
|
||||
@ -113,6 +116,8 @@ namespace DS4Windows
|
||||
Output[i] = 0;
|
||||
}
|
||||
|
||||
unchecked
|
||||
{
|
||||
if (state.Share) Output[10] |= (Byte)(1 << 5); // Back
|
||||
if (state.L3) Output[10] |= (Byte)(1 << 6); // Left Thumb
|
||||
if (state.R3) Output[10] |= (Byte)(1 << 7); // Right Thumb
|
||||
@ -149,6 +154,7 @@ namespace DS4Windows
|
||||
Output[20] = (Byte)((ThumbRY >> 0) & 0xFF); // RY
|
||||
Output[21] = (Byte)((ThumbRY >> 8) & 0xFF);
|
||||
}
|
||||
}
|
||||
|
||||
public Boolean Plugin(Int32 Serial)
|
||||
{
|
||||
|
@ -409,13 +409,28 @@ namespace DS4Windows
|
||||
|
||||
foreach (Control control in fLPSettings.Controls)
|
||||
{
|
||||
string tempst;
|
||||
if (control.HasChildren)
|
||||
{
|
||||
foreach (Control ctrl in control.Controls)
|
||||
{
|
||||
if (hoverTextDict.TryGetValue(ctrl, out tempst))
|
||||
{
|
||||
ctrl.MouseHover += Items_MouseHover;
|
||||
}
|
||||
|
||||
control.MouseHover += Items_MouseHover;
|
||||
else
|
||||
{
|
||||
ctrl.MouseHover += ClearLastMessage;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (hoverTextDict.TryGetValue(control, out tempst))
|
||||
control.MouseEnter += Items_MouseHover;
|
||||
else
|
||||
control.MouseHover += ClearLastMessage;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -447,6 +462,12 @@ namespace DS4Windows
|
||||
g.DrawImage(shield, new Rectangle(0, 0, finalWidth, finalHeight));
|
||||
}
|
||||
|
||||
private void ClearLastMessage(object sender, EventArgs e)
|
||||
{
|
||||
lbLastMessage.Text = "";
|
||||
lbLastMessage.ForeColor = SystemColors.GrayText;
|
||||
}
|
||||
|
||||
private void blankControllerTab()
|
||||
{
|
||||
for (int Index = 0, PadsLen = Pads.Length;
|
||||
|
@ -33,7 +33,7 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.5.1")]
|
||||
[assembly: AssemblyFileVersion("1.5.1")]
|
||||
[assembly: AssemblyVersion("1.5.2")]
|
||||
[assembly: AssemblyFileVersion("1.5.2")]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user