Skip to content
Snippets Groups Projects
Commit a7b6da78 authored by Snellman Väinö Juhani's avatar Snellman Väinö Juhani
Browse files

Solution lisätty.

parent 2b437144
No related branches found
No related tags found
No related merge requests found

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32825.248
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sammakkopeli", "Sammakkopeli\Sammakkopeli.csproj", "{089E442E-4A40-4DBF-8D92-AE510482B764}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{089E442E-4A40-4DBF-8D92-AE510482B764}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{089E442E-4A40-4DBF-8D92-AE510482B764}.Debug|Any CPU.Build.0 = Debug|Any CPU
{089E442E-4A40-4DBF-8D92-AE510482B764}.Release|Any CPU.ActiveCfg = Release|Any CPU
{089E442E-4A40-4DBF-8D92-AE510482B764}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {B9577520-187E-4D34-BB7D-9968BDEDBBEE}
EndGlobalSection
EndGlobal
#region Using Statements
using System;
using System.Collections.Generic;
using System.Linq;
#endregion
namespace Sammakkopeli
{
/// <summary>
/// The main class.
/// </summary>
public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
using var game = new Sammakkopeli();
game.Run();
}
}
}
using Jypeli;
using Jypeli.Assets;
using Jypeli.Controls;
using Jypeli.Widgets;
using System;
using System.Collections.Generic;
namespace Sammakkopeli
{
public class Sammakkopeli : PhysicsGame
{
Vector sammakkoVasen = new Vector(-500, -400);
Vector sammakkoOikea = new Vector(500, -400);
Vector sammakkoPainovoima = new Vector(0, -400);
PhysicsObject sammakko;
public override void Begin()
{
AlustaKentta();
AsetaOhjaimet();
Keyboard.Listen(Key.Escape, ButtonState.Pressed, ConfirmExit, "Lopeta peli");
}
public void AsetaOhjaimet()
{
Keyboard.Listen(Key.Left, ButtonState.Down, LiikutaPelihahmoa, null, sammakkoVasen);
Keyboard.Listen(Key.Left, ButtonState.Released, LiikutaPelihahmoa, null, sammakkoPainovoima);
Keyboard.Listen(Key.Right, ButtonState.Down, LiikutaPelihahmoa, null, sammakkoOikea);
Keyboard.Listen(Key.Right, ButtonState.Released, LiikutaPelihahmoa, null, sammakkoPainovoima);
}
public void AlustaKentta()
{
Level.BackgroundColor = Color.Black;
LuoPelihahmo(0, 0);
Level.CreateBottomBorder(0.0, true);
}
public void LuoPelihahmo(double x, double y)
{
sammakko = new PhysicsObject(40.0, 26.0);
sammakko.Shape = Shape.Rectangle;
sammakko.X = x;
sammakko.Y = y;
sammakko.Color = Color.Green;
sammakko.Velocity = sammakkoPainovoima;
Add(sammakko);
}
public void LiikutaPelihahmoa(Vector suunta)
{
sammakko.Velocity = suunta;
}
}
}
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<PublishReadyToRun>false</PublishReadyToRun>
<TieredCompilation>false</TieredCompilation>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Jypeli.NET" Version="11.*" />
<PackageReference Include="Jypeli.FarseerPhysics.NET" Version="2.*" />
</ItemGroup>
</Project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment