mirror of
https://github.com/IgLemp/platformer.git
synced 2025-04-03 00:37:40 +02:00
Compare commits
2 Commits
c5d1b05d8c
...
8fdca7bbb9
Author | SHA1 | Date | |
---|---|---|---|
|
8fdca7bbb9 | ||
|
c003155edd |
43
src/main.zig
43
src/main.zig
@ -14,8 +14,8 @@ pub fn main() anyerror!void
|
|||||||
{
|
{
|
||||||
// MEMORY ALLOCATOR
|
// MEMORY ALLOCATOR
|
||||||
//--------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------
|
||||||
var arena = std.heap.ArenaAllocator.init(std.heap.page_allocator);
|
var gpAlloc = std.heap.GeneralPurposeAllocator(.{}){};
|
||||||
var arenaAlloc = arena.allocator();
|
var allocator = gpAlloc.allocator();
|
||||||
|
|
||||||
// Initialization
|
// Initialization
|
||||||
//--------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------
|
||||||
@ -39,7 +39,7 @@ pub fn main() anyerror!void
|
|||||||
// .{ .box = .{ .x = 100, .y = 0, .width = 20, .height = 200, }, .texture = null }
|
// .{ .box = .{ .x = 100, .y = 0, .width = 20, .height = 200, }, .texture = null }
|
||||||
// };
|
// };
|
||||||
|
|
||||||
var objects = std.ArrayList(obj.Object).init(arenaAlloc);
|
var objects = std.ArrayList(obj.Object).init(allocator);
|
||||||
try objects.append(.{ .box = .{ .x = 0, .y = 0, .width = 300, .height = 20, }, .texture = null });
|
try objects.append(.{ .box = .{ .x = 0, .y = 0, .width = 300, .height = 20, }, .texture = null });
|
||||||
try objects.append(.{ .box = .{ .x = 100, .y = 0, .width = 20, .height = 200, }, .texture = null });
|
try objects.append(.{ .box = .{ .x = 100, .y = 0, .width = 20, .height = 200, }, .texture = null });
|
||||||
|
|
||||||
@ -62,6 +62,8 @@ pub fn main() anyerror!void
|
|||||||
|
|
||||||
rl.SetTargetFPS(60); // Set our game to run at 60 frames-per-second
|
rl.SetTargetFPS(60); // Set our game to run at 60 frames-per-second
|
||||||
|
|
||||||
|
var mouse_position: rl.Vector2 = undefined;
|
||||||
|
var mouse_end_position: rl.Vector2 = undefined;
|
||||||
|
|
||||||
// Main game loop ================================================================
|
// Main game loop ================================================================
|
||||||
while (!rl.WindowShouldClose()) // Detect window close button or ESC key
|
while (!rl.WindowShouldClose()) // Detect window close button or ESC key
|
||||||
@ -92,6 +94,29 @@ pub fn main() anyerror!void
|
|||||||
// try stdout.print("player position: x = {d}, y = {d}\n", .{player.box.x, player.box.y});
|
// try stdout.print("player position: x = {d}, y = {d}\n", .{player.box.x, player.box.y});
|
||||||
// std.log.debug("player position: x = {d}, y = {d}, velocity: x = {d}, y = {d}", .{player.box.x, player.box.y, player.velocity.x, player.velocity.y});
|
// std.log.debug("player position: x = {d}, y = {d}, velocity: x = {d}, y = {d}", .{player.box.x, player.box.y, player.velocity.x, player.velocity.y});
|
||||||
// std.log.debug("{}", .{player.detection_box});
|
// std.log.debug("{}", .{player.detection_box});
|
||||||
|
// std.debug.print("camera terget: x = {d}, y = {d}\n", .{camera.target.x, camera.target.y});
|
||||||
|
var fixed_ws_position_vector_lt: rl.Vector2 = .{ .x = camera.target.x - (screenWidth / 2) * (1 / camera.zoom), .y = camera.target.y - (screenHeight / 2) * (1 / camera.zoom)};
|
||||||
|
var fixed_ws_position_vector_rb: rl.Vector2 = .{ .x = camera.target.x + (screenWidth / 2) * (1 / camera.zoom), .y = camera.target.y + (screenHeight / 2) * (1 / camera.zoom)};
|
||||||
|
var fixed_ws_position_vector_range: rl.Vector2 = .{ .x = fixed_ws_position_vector_rb.x - fixed_ws_position_vector_lt.x, .y = fixed_ws_position_vector_rb.y - fixed_ws_position_vector_lt.y};
|
||||||
|
|
||||||
|
if (rl.IsMouseButtonPressed( .MOUSE_BUTTON_LEFT )) {
|
||||||
|
mouse_position = rl.GetMousePosition();
|
||||||
|
mouse_position = .{ .x = mouse_position.x / screenWidth, .y = mouse_position.y / screenHeight};
|
||||||
|
mouse_position = .{ .x = fixed_ws_position_vector_lt.x + mouse_position.x * fixed_ws_position_vector_range.x, .y = fixed_ws_position_vector_lt.y + mouse_position.y * fixed_ws_position_vector_range.y};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rl.IsMouseButtonDown( .MOUSE_BUTTON_LEFT )) {
|
||||||
|
mouse_end_position = rl.GetMousePosition();
|
||||||
|
mouse_end_position = .{ .x = mouse_end_position.x / screenWidth, .y = mouse_end_position.y / screenHeight};
|
||||||
|
mouse_end_position = .{ .x = fixed_ws_position_vector_lt.x + mouse_end_position.x * fixed_ws_position_vector_range.x, .y = fixed_ws_position_vector_lt.y + mouse_end_position.y * fixed_ws_position_vector_range.y};
|
||||||
|
}
|
||||||
|
|
||||||
|
// if (rl.IsMouseButtonReleased( .MOUSE_BUTTON_LEFT )) {
|
||||||
|
// var end_pos = rl.GetMousePosition();
|
||||||
|
// var box_wh = .{ .x = @fabs(mouse_position.x - end_pos.x), .y = @fabs(mouse_position.y - end_pos.y) };
|
||||||
|
// try objects.append( .{ .box = .{ .x = mouse_position.x, .y = mouse_position.y, .width = box_wh.x, .height = box_wh.y, }, .texture = null } );
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
// init drawing
|
// init drawing
|
||||||
@ -105,22 +130,24 @@ pub fn main() anyerror!void
|
|||||||
camera.Begin();
|
camera.Begin();
|
||||||
defer camera.End();
|
defer camera.End();
|
||||||
|
|
||||||
defer rl.DrawCircleV( .{ .x = 0, .y = 0 } , 4, rl.BLUE);
|
defer rl.DrawCircleV( .{ .x = 0, .y = 0 }, 4, rl.BLUE);
|
||||||
|
|
||||||
// what have I done
|
// what have I done
|
||||||
rl.DrawTextureV(texture, .{ .x = -100, .y = -200}, rl.WHITE);
|
rl.DrawTextureV(texture, .{ .x = -100, .y = -200}, rl.WHITE);
|
||||||
|
|
||||||
|
rl.DrawRectangleRec( .{ .x = mouse_position.x, .y = mouse_position.y, .width = @fabs(mouse_position.x - mouse_end_position.x), .height = @fabs(mouse_position.y - mouse_end_position.y) }, rl.BLUE);
|
||||||
|
// rl.DrawCircleV( .{ .x = camera.target.x - (screenWidth / 2) * (1 / camera.zoom), .y = camera.target.y - (screenHeight / 2) * (1 / camera.zoom) }, 5, rl.RED);
|
||||||
|
|
||||||
// draw player
|
// draw player
|
||||||
var playerRenderBox = .{ .x = player.box.x, .y = -player.box.y - player.box.height, .width = player.box.width, .height = player.box.height };
|
// var playerRenderBox = .{ .x = player.box.x, .y = -player.box.y - player.box.height, .width = player.box.width, .height = player.box.height };
|
||||||
_ = playerRenderBox;
|
// _ = playerRenderBox;
|
||||||
// defer rl.DrawRectangleRec( playerRenderBox, rl.RED);
|
// defer rl.DrawRectangleRec( playerRenderBox, rl.RED);
|
||||||
defer rl.DrawTextureV( playerTexture, .{ .x = player.box.x, .y = -player.box.y - player.box.height }, rl.WHITE);
|
defer rl.DrawTextureV( playerTexture, .{ .x = player.box.x, .y = -player.box.y - player.box.height }, rl.WHITE);
|
||||||
// rl.DrawRectangleRec(.{ .x = player.detection_box.x.* - 5 , .y = player.detection_box.y.* - 5, .width = player.detection_box.width, .height = player.detection_box.height }, rl.RED);
|
// rl.DrawRectangleRec(.{ .x = player.detection_box.x.* - 5 , .y = player.detection_box.y.* - 5, .width = player.detection_box.width, .height = player.detection_box.height }, rl.RED);
|
||||||
|
|
||||||
|
|
||||||
// tile drawing
|
// tile drawing
|
||||||
for (map.tiles.allocatedSlice()) |tile| {
|
for (map.tiles.items) |tile| {
|
||||||
var dispTile = .{ .x = tile.box.x, .y = tile.box.y - tile.box.height, .width = tile.box.width, .height = tile.box.height };
|
var dispTile = .{ .x = tile.box.x, .y = tile.box.y - tile.box.height, .width = tile.box.width, .height = tile.box.height };
|
||||||
rl.DrawRectangleRec(dispTile, rl.GRAY);
|
rl.DrawRectangleRec(dispTile, rl.GRAY);
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ pub const movement = struct {
|
|||||||
pub fn ApplyPlayerCollisions(player: *obj.Player, map: obj.Map) void {
|
pub fn ApplyPlayerCollisions(player: *obj.Player, map: obj.Map) void {
|
||||||
|
|
||||||
// for every tile
|
// for every tile
|
||||||
for (map.tiles.allocatedSlice()) |tile| {
|
for (map.tiles.items) |tile| {
|
||||||
|
|
||||||
// check if any collision occured
|
// check if any collision occured
|
||||||
if ( rl.CheckCollisionRecs(player.box, tile.box) ) {
|
if ( rl.CheckCollisionRecs(player.box, tile.box) ) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user