From 727eeb87106e0efc4e49bedd914450c7cb3562ee Mon Sep 17 00:00:00 2001 From: Nathan Christopher McRae Date: Sat, 10 Jun 2023 21:34:42 -0700 Subject: [PATCH] zig fmt --- src/main.zig | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/src/main.zig b/src/main.zig index c9d3b31..6b4f926 100644 --- a/src/main.zig +++ b/src/main.zig @@ -9,7 +9,7 @@ pub fn main() !void { const window_width = 300; const window_height = 500; const column_width = 100; - + if (c.SDL_Init(c.SDL_INIT_VIDEO) != 0) { c.SDL_Log("Unable to initialize SDL: %s", c.SDL_GetError()); return error.SDLInitializationFailed; @@ -57,11 +57,10 @@ pub fn main() !void { return error.SDLInitializationFailed; } - var x:c_int = 0; + var x: c_int = 0; while (x < window_width) : (x += 1) { - var y:c_int = 0; + var y: c_int = 0; while (y < window_height) : (y += 1) { - // std.debug.print("x: {any}, y: {any}\n", .{x, y}); const draw_result = c.SDL_RenderDrawPoint(renderer, x, y); if (draw_result != 0) { c.SDL_Log("Unable to draw point: %d", draw_result); @@ -70,12 +69,12 @@ pub fn main() !void { } } - var i:usize = 0; - var column:c_int = 0; + var i: usize = 0; + var column: c_int = 0; x = 0; - var y:c_int = 0; + var y: c_int = 0; // white: false, black: true - var color:bool = false; + var color: bool = false; while (i < source_code.len) : (i += 1) { if (source_code[i] == 10) { y += 1; @@ -85,10 +84,10 @@ pub fn main() !void { // std.debug.print("Column: {any}, x: {any}\n", .{column, column*column_width}); } x = column * column_width; + continue; } - if (source_code[i] == 32 and color) { color = false; const white_color_result = c.SDL_SetRenderDrawColor(renderer, 255, 255, 255, 255); @@ -96,8 +95,7 @@ pub fn main() !void { c.SDL_Log("Unable to set draw color: %d", white_color_result); return error.SDLInitializationFailed; } - } - else if (source_code[i] != 32 and !color) { + } else if (source_code[i] != 32 and !color) { color = true; const black_color_result = c.SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255); if (black_color_result != 0) { @@ -105,7 +103,7 @@ pub fn main() !void { return error.SDLInitializationFailed; } } - + if (x < (column + 1) * column_width) { const draw_result = c.SDL_RenderDrawPoint(renderer, x, y); if (draw_result != 0) {