2024-06-05 21:19:43 +00:00
|
|
|
|
using MoonWorks;
|
|
|
|
|
using MoonWorks.Graphics;
|
|
|
|
|
|
|
|
|
|
namespace MoonWorksGraphicsTests;
|
|
|
|
|
|
|
|
|
|
public static class TestUtils
|
|
|
|
|
{
|
|
|
|
|
public static GraphicsPipelineCreateInfo GetStandardGraphicsPipelineCreateInfo(
|
|
|
|
|
TextureFormat swapchainFormat,
|
|
|
|
|
Shader vertShader,
|
|
|
|
|
Shader fragShader
|
|
|
|
|
) {
|
|
|
|
|
return new GraphicsPipelineCreateInfo
|
|
|
|
|
{
|
|
|
|
|
AttachmentInfo = new GraphicsPipelineAttachmentInfo(
|
|
|
|
|
new ColorAttachmentDescription(
|
|
|
|
|
swapchainFormat,
|
|
|
|
|
ColorAttachmentBlendState.Opaque
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
DepthStencilState = DepthStencilState.Disable,
|
|
|
|
|
MultisampleState = MultisampleState.None,
|
|
|
|
|
PrimitiveType = PrimitiveType.TriangleList,
|
|
|
|
|
RasterizerState = RasterizerState.CCW_CullNone,
|
|
|
|
|
VertexInputState = VertexInputState.Empty,
|
|
|
|
|
VertexShader = vertShader,
|
|
|
|
|
FragmentShader = fragShader
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string GetShaderPath(string shaderName)
|
|
|
|
|
{
|
2024-06-06 05:47:06 +00:00
|
|
|
|
return SDL2.SDL.SDL_GetBasePath() + "Content/Shaders/Compiled/" + shaderName + ".spv";
|
2024-06-05 21:19:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string GetTexturePath(string textureName)
|
|
|
|
|
{
|
|
|
|
|
return SDL2.SDL.SDL_GetBasePath() + "Content/Textures/" + textureName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string GetVideoPath(string videoName)
|
|
|
|
|
{
|
|
|
|
|
return SDL2.SDL.SDL_GetBasePath() + "Content/Videos/" + videoName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum ButtonType
|
|
|
|
|
{
|
|
|
|
|
Left, // A/left arrow on keyboard, left face button on gamepad
|
|
|
|
|
Bottom, // S/down arrow on keyboard, bottom face button on gamepad
|
|
|
|
|
Right // D/right arrow on keyboard, right face button on gamepad
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-06 05:47:06 +00:00
|
|
|
|
public static bool CheckButtonPressed(MoonWorks.Input.Inputs inputs, ButtonType buttonType)
|
2024-06-05 21:19:43 +00:00
|
|
|
|
{
|
|
|
|
|
bool pressed = false;
|
|
|
|
|
|
|
|
|
|
if (buttonType == ButtonType.Left)
|
|
|
|
|
{
|
|
|
|
|
pressed = (
|
|
|
|
|
(inputs.GamepadExists(0) && inputs.GetGamepad(0).DpadLeft.IsPressed) ||
|
2024-06-06 05:47:06 +00:00
|
|
|
|
inputs.Keyboard.IsPressed(MoonWorks.Input.KeyCode.Left) ||
|
|
|
|
|
inputs.Keyboard.IsPressed(MoonWorks.Input.KeyCode.A)
|
2024-06-05 21:19:43 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
else if (buttonType == ButtonType.Bottom)
|
|
|
|
|
{
|
|
|
|
|
pressed = (
|
|
|
|
|
(inputs.GamepadExists(0) && inputs.GetGamepad(0).DpadDown.IsPressed) ||
|
2024-06-06 05:47:06 +00:00
|
|
|
|
inputs.Keyboard.IsPressed(MoonWorks.Input.KeyCode.Down) ||
|
|
|
|
|
inputs.Keyboard.IsPressed(MoonWorks.Input.KeyCode.S)
|
2024-06-05 21:19:43 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
else if (buttonType == ButtonType.Right)
|
|
|
|
|
{
|
|
|
|
|
pressed = (
|
|
|
|
|
(inputs.GamepadExists(0) && inputs.GetGamepad(0).DpadRight.IsPressed) ||
|
2024-06-06 05:47:06 +00:00
|
|
|
|
inputs.Keyboard.IsPressed(MoonWorks.Input.KeyCode.Right) ||
|
|
|
|
|
inputs.Keyboard.IsPressed(MoonWorks.Input.KeyCode.D)
|
2024-06-05 21:19:43 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return pressed;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-06 05:47:06 +00:00
|
|
|
|
public static bool CheckButtonDown(MoonWorks.Input.Inputs inputs, ButtonType buttonType)
|
2024-06-05 21:19:43 +00:00
|
|
|
|
{
|
|
|
|
|
bool down = false;
|
|
|
|
|
|
|
|
|
|
if (buttonType == ButtonType.Left)
|
|
|
|
|
{
|
|
|
|
|
down = (
|
|
|
|
|
(inputs.GamepadExists(0) && inputs.GetGamepad(0).DpadLeft.IsDown) ||
|
2024-06-06 05:47:06 +00:00
|
|
|
|
inputs.Keyboard.IsDown(MoonWorks.Input.KeyCode.Left) ||
|
|
|
|
|
inputs.Keyboard.IsDown(MoonWorks.Input.KeyCode.A)
|
2024-06-05 21:19:43 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
else if (buttonType == ButtonType.Bottom)
|
|
|
|
|
{
|
|
|
|
|
down = (
|
|
|
|
|
(inputs.GamepadExists(0) && inputs.GetGamepad(0).DpadDown.IsDown) ||
|
2024-06-06 05:47:06 +00:00
|
|
|
|
inputs.Keyboard.IsDown(MoonWorks.Input.KeyCode.Down) ||
|
|
|
|
|
inputs.Keyboard.IsDown(MoonWorks.Input.KeyCode.S)
|
2024-06-05 21:19:43 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
else if (buttonType == ButtonType.Right)
|
|
|
|
|
{
|
|
|
|
|
down = (
|
|
|
|
|
(inputs.GamepadExists(0) && inputs.GetGamepad(0).DpadRight.IsDown) ||
|
2024-06-06 05:47:06 +00:00
|
|
|
|
inputs.Keyboard.IsDown(MoonWorks.Input.KeyCode.Right) ||
|
|
|
|
|
inputs.Keyboard.IsDown(MoonWorks.Input.KeyCode.D)
|
2024-06-05 21:19:43 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return down;
|
|
|
|
|
}
|
|
|
|
|
}
|