mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
187 lines
7.8 KiB
C#
187 lines
7.8 KiB
C#
/*******************************************************************************************
|
|
*
|
|
* raylib [core] example - 3d camera first person
|
|
*
|
|
* This example has been created using raylib 1.3 (www.raylib.com)
|
|
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
|
|
*
|
|
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
|
|
*
|
|
********************************************************************************************/
|
|
|
|
using System.Numerics;
|
|
using static Raylib_cs.Raylib;
|
|
|
|
namespace Examples.Core;
|
|
|
|
public class Camera3dFirstPerson
|
|
{
|
|
public const int MaxColumns = 20;
|
|
|
|
public static int Main()
|
|
{
|
|
// Initialization
|
|
//--------------------------------------------------------------------------------------
|
|
const int screenWidth = 800;
|
|
const int screenHeight = 450;
|
|
|
|
InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera first person");
|
|
|
|
// Define the camera to look into our 3d world (position, target, up vector)
|
|
Camera3D camera = new();
|
|
camera.Position = new Vector3(4.0f, 2.0f, 4.0f);
|
|
camera.Target = new Vector3(0.0f, 1.8f, 0.0f);
|
|
camera.Up = new Vector3(0.0f, 1.0f, 0.0f);
|
|
camera.FovY = 60.0f;
|
|
camera.Projection = CameraProjection.CAMERA_PERSPECTIVE;
|
|
|
|
// Generates some random columns
|
|
float[] heights = new float[MaxColumns];
|
|
Vector3[] positions = new Vector3[MaxColumns];
|
|
Color[] colors = new Color[MaxColumns];
|
|
|
|
for (int i = 0; i < MaxColumns; i++)
|
|
{
|
|
heights[i] = (float)GetRandomValue(1, 12);
|
|
positions[i] = new Vector3(GetRandomValue(-15, 15), heights[i] / 2, GetRandomValue(-15, 15));
|
|
colors[i] = new Color(GetRandomValue(20, 255), GetRandomValue(10, 55), 30, 255);
|
|
}
|
|
|
|
CameraMode cameraMode = CameraMode.CAMERA_FIRST_PERSON;
|
|
|
|
SetTargetFPS(60);
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
// Main game loop
|
|
while (!WindowShouldClose())
|
|
{
|
|
// Update
|
|
//----------------------------------------------------------------------------------
|
|
// Switch camera mode
|
|
if (IsKeyPressed(KeyboardKey.KEY_ONE))
|
|
{
|
|
cameraMode = CameraMode.CAMERA_FREE;
|
|
camera.Up = new Vector3(0.0f, 1.0f, 0.0f);
|
|
}
|
|
|
|
if (IsKeyPressed(KeyboardKey.KEY_TWO))
|
|
{
|
|
cameraMode = CameraMode.CAMERA_FIRST_PERSON;
|
|
camera.Up = new Vector3(0.0f, 1.0f, 0.0f);
|
|
}
|
|
|
|
if (IsKeyPressed(KeyboardKey.KEY_THREE))
|
|
{
|
|
cameraMode = CameraMode.CAMERA_THIRD_PERSON;
|
|
camera.Up = new Vector3(0.0f, 1.0f, 0.0f);
|
|
}
|
|
|
|
if (IsKeyPressed(KeyboardKey.KEY_FOUR))
|
|
{
|
|
cameraMode = CameraMode.CAMERA_ORBITAL;
|
|
camera.Up = new Vector3(0.0f, 1.0f, 0.0f);
|
|
}
|
|
|
|
// Switch camera projection
|
|
if (IsKeyPressed(KeyboardKey.KEY_P))
|
|
{
|
|
if (camera.Projection == CameraProjection.CAMERA_PERSPECTIVE)
|
|
{
|
|
// Create isometric view
|
|
cameraMode = CameraMode.CAMERA_THIRD_PERSON;
|
|
// Note: The target distance is related to the render distance in the orthographic projection
|
|
camera.Position = new Vector3(0.0f, 2.0f, -100.0f);
|
|
camera.Target = new Vector3(0.0f, 2.0f, 0.0f);
|
|
camera.Up = new Vector3(0.0f, 1.0f, 0.0f);
|
|
camera.Projection = CameraProjection.CAMERA_ORTHOGRAPHIC;
|
|
camera.FovY = 20.0f; // near plane width in CAMERA_ORTHOGRAPHIC
|
|
// CameraYaw(&camera, -135 * DEG2RAD, true);
|
|
// CameraPitch(&camera, -45 * DEG2RAD, true, true, false);
|
|
}
|
|
else if (camera.Projection == CameraProjection.CAMERA_ORTHOGRAPHIC)
|
|
{
|
|
// Reset to default view
|
|
cameraMode = CameraMode.CAMERA_THIRD_PERSON;
|
|
camera.Position = new Vector3(0.0f, 2.0f, 10.0f);
|
|
camera.Target = new Vector3(0.0f, 2.0f, 0.0f);
|
|
camera.Up = new Vector3(0.0f, 1.0f, 0.0f);
|
|
camera.Projection = CameraProjection.CAMERA_PERSPECTIVE;
|
|
camera.FovY = 60.0f;
|
|
}
|
|
}
|
|
|
|
// Update camera computes movement internally depending on the camera mode
|
|
// Some default standard keyboard/mouse inputs are hardcoded to simplify use
|
|
// For advance camera controls, it's reecommended to compute camera movement manually
|
|
UpdateCamera(ref camera, CameraMode.CAMERA_CUSTOM);
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Draw
|
|
//----------------------------------------------------------------------------------
|
|
BeginDrawing();
|
|
ClearBackground(Color.RAYWHITE);
|
|
|
|
BeginMode3D(camera);
|
|
|
|
// Draw ground
|
|
DrawPlane(new Vector3(0.0f, 0.0f, 0.0f), new Vector2(32.0f, 32.0f), Color.LIGHTGRAY);
|
|
|
|
// Draw a blue wall
|
|
DrawCube(new Vector3(-16.0f, 2.5f, 0.0f), 1.0f, 5.0f, 32.0f, Color.BLUE);
|
|
|
|
// Draw a green wall
|
|
DrawCube(new Vector3(16.0f, 2.5f, 0.0f), 1.0f, 5.0f, 32.0f, Color.LIME);
|
|
|
|
// Draw a yellow wall
|
|
DrawCube(new Vector3(0.0f, 2.5f, 16.0f), 32.0f, 5.0f, 1.0f, Color.GOLD);
|
|
|
|
// Draw some cubes around
|
|
for (int i = 0; i < MaxColumns; i++)
|
|
{
|
|
DrawCube(positions[i], 2.0f, heights[i], 2.0f, colors[i]);
|
|
DrawCubeWires(positions[i], 2.0f, heights[i], 2.0f, Color.MAROON);
|
|
}
|
|
|
|
// Draw player cube
|
|
if (cameraMode == CameraMode.CAMERA_THIRD_PERSON)
|
|
{
|
|
DrawCube(camera.Target, 0.5f, 0.5f, 0.5f, Color.PURPLE);
|
|
DrawCubeWires(camera.Target, 0.5f, 0.5f, 0.5f, Color.DARKPURPLE);
|
|
}
|
|
|
|
EndMode3D();
|
|
|
|
// Draw info boxes
|
|
DrawRectangle(5, 5, 330, 100, ColorAlpha(Color.SKYBLUE, 0.5f));
|
|
DrawRectangleLines(10, 10, 330, 100, Color.BLUE);
|
|
|
|
DrawText("Camera controls:", 15, 15, 10, Color.BLACK);
|
|
DrawText("- Move keys: W, A, S, D, Space, Left-Ctrl", 15, 30, 10, Color.BLACK);
|
|
DrawText("- Look around: arrow keys or mouse", 15, 45, 10, Color.BLACK);
|
|
DrawText("- Camera mode keys: 1, 2, 3, 4", 15, 60, 10, Color.BLACK);
|
|
DrawText("- Zoom keys: num-plus, num-minus or mouse scroll", 15, 75, 10, Color.BLACK);
|
|
DrawText("- Camera projection key: P", 15, 90, 10, Color.BLACK);
|
|
|
|
DrawRectangle(600, 5, 195, 100, Fade(Color.SKYBLUE, 0.5f));
|
|
DrawRectangleLines(600, 5, 195, 100, Color.BLUE);
|
|
|
|
DrawText("Camera status:", 610, 15, 10, Color.BLACK);
|
|
DrawText($"- Mode: {cameraMode}", 610, 30, 10, Color.BLACK);
|
|
DrawText($"- Projection: {camera.Projection}", 610, 45, 10, Color.BLACK);
|
|
DrawText($"- Position: {camera.Position}", 610, 60, 10, Color.BLACK);
|
|
DrawText($"- Target: {camera.Target}", 610, 75, 10, Color.BLACK);
|
|
DrawText($"- Up: {camera.Up}", 610, 90, 10, Color.BLACK);
|
|
|
|
EndDrawing();
|
|
//----------------------------------------------------------------------------------
|
|
}
|
|
|
|
// De-Initialization
|
|
//--------------------------------------------------------------------------------------
|
|
CloseWindow();
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
return 0;
|
|
}
|
|
}
|