make typescript happy
This commit is contained in:
parent
123d151c57
commit
7158cd3b29
4 changed files with 62 additions and 33 deletions
|
@ -1,5 +1,8 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "ESNext"
|
"target": "ESNext",
|
||||||
|
"noImplicitAny": true,
|
||||||
|
"checkJs": true,
|
||||||
|
"strict": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
import argparse
|
import argparse
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from PIL import Image
|
|
||||||
|
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument("input")
|
parser.add_argument("input")
|
||||||
|
@ -34,9 +33,11 @@ def generate_data():
|
||||||
def generate_hashmap_init():
|
def generate_hashmap_init():
|
||||||
string_list = list()
|
string_list = list()
|
||||||
for index, data in enumerate(file_array):
|
for index, data in enumerate(file_array):
|
||||||
string_list.append(f"if (strcmp(filename, \"{data["filename"]}\") == 0) {{ *data = &data{index}; *size = sizeof(data{index}); return 1; }}")
|
filename = '"' + data["filename"] + '"'
|
||||||
|
string_list.append(f"if (strcmp(filename, {filename}) == 0) {{ *data = &data{index}; *size = sizeof(data{index}); return 1; }}")
|
||||||
|
strings = '\n'.join(string_list)
|
||||||
return f"""int get_file_pointer(const char* filename, void ** data, size_t * size) {{
|
return f"""int get_file_pointer(const char* filename, void ** data, size_t * size) {{
|
||||||
{'\n'.join(string_list)}
|
{strings}
|
||||||
return 0;
|
return 0;
|
||||||
}}"""
|
}}"""
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,19 @@ const TERMINAL_VELOCITY_SPEED = 500;
|
||||||
const PIPE_SPAWN_TIME = 4;
|
const PIPE_SPAWN_TIME = 4;
|
||||||
const PIPE_MAX_TIME = 5;
|
const PIPE_MAX_TIME = 5;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* throws if input is nullish.
|
||||||
|
* @template T
|
||||||
|
* @param {T | null | undefined} value
|
||||||
|
* @returns {T}
|
||||||
|
*/
|
||||||
|
function nonNull(value) {
|
||||||
|
if (value == null) {
|
||||||
|
throw new Error("unexpected " + (value === null ? 'null' : 'undefined'))
|
||||||
|
}
|
||||||
|
return value
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* clamps a number to the min and max values.
|
* clamps a number to the min and max values.
|
||||||
* @param {number} num
|
* @param {number} num
|
||||||
|
@ -20,25 +33,31 @@ function clamp(num, min, max) {
|
||||||
return Math.min(Math.max(num, min), max);
|
return Math.min(Math.max(num, min), max);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* picks a random number between the min and max values.
|
||||||
|
* @param {number} min
|
||||||
|
* @param {number} max
|
||||||
|
* @returns a random number
|
||||||
|
*/
|
||||||
function random_range(min, max) {
|
function random_range(min, max) {
|
||||||
const minCeiled = Math.ceil(min);
|
const minCeiled = Math.ceil(min);
|
||||||
const maxFloored = Math.floor(max);
|
const maxFloored = Math.floor(max);
|
||||||
return Math.floor(Math.random() * (maxFloored - minCeiled) + minCeiled);
|
return Math.floor(Math.random() * (maxFloored - minCeiled) + minCeiled);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @type {GRRLibTexture} */
|
/** @type {GRRLibTexture | null} */
|
||||||
globalThis.background = null;
|
globalThis.background = null;
|
||||||
|
|
||||||
/** @type {DrawableObject} */
|
/** @type {{velocity: number, position: number, texture?: GRRLibTexture}} */
|
||||||
globalThis.bird = {
|
globalThis.bird = {
|
||||||
velocity: 0,
|
velocity: 0,
|
||||||
position: 0
|
position: 0
|
||||||
};
|
};
|
||||||
|
|
||||||
/** @type {GRRLibTexture} */
|
/** @type {GRRLibTexture | null} */
|
||||||
globalThis.pipe = null;
|
globalThis.pipe = null;
|
||||||
|
|
||||||
/** @type {GRRLibTexture} */
|
/** @type {GRRLibTexture | null} */
|
||||||
globalThis.pipe_flipped = null;
|
globalThis.pipe_flipped = null;
|
||||||
|
|
||||||
/** @type {Pipe[]} */
|
/** @type {Pipe[]} */
|
||||||
|
@ -64,15 +83,15 @@ function update_bird() {
|
||||||
bird.position -= bird.velocity * deltatime;
|
bird.position -= bird.velocity * deltatime;
|
||||||
bird.velocity = clamp(bird.velocity - (FALLING_SPEED * deltatime), -TERMINAL_VELOCITY_SPEED, TERMINAL_VELOCITY_SPEED);
|
bird.velocity = clamp(bird.velocity - (FALLING_SPEED * deltatime), -TERMINAL_VELOCITY_SPEED, TERMINAL_VELOCITY_SPEED);
|
||||||
|
|
||||||
wii.grrlib.draw_img(0, bird.position, bird.texture, 0, 1, 1, WHITE_COLOR);
|
wii.grrlib.draw_img(0, bird.position, nonNull(bird.texture), 0, 1, 1, WHITE_COLOR);
|
||||||
}
|
}
|
||||||
|
|
||||||
function create_pipe() {
|
function create_pipe() {
|
||||||
const top_max = 200;
|
const top_max = 200;
|
||||||
const top_y = random_range(0, top_max);
|
const top_y = random_range(0, top_max);
|
||||||
|
|
||||||
wii.grrlib.draw_img(100, -top_y, pipe_flipped, 0, 1, 1, WHITE_COLOR);
|
wii.grrlib.draw_img(100, -top_y, nonNull(pipe_flipped), 0, 1, 1, WHITE_COLOR);
|
||||||
wii.grrlib.draw_img(100, top_y + 400, pipe, 0, 1, 1, WHITE_COLOR);
|
wii.grrlib.draw_img(100, top_y + 400, nonNull(pipe), 0, 1, 1, WHITE_COLOR);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
top_y: -top_y,
|
top_y: -top_y,
|
||||||
|
@ -91,8 +110,8 @@ function update_pipe(pipe) {
|
||||||
pipes.splice(index, -1);
|
pipes.splice(index, -1);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
wii.grrlib.draw_img(pipe.position, pipe.top_y, pipe_flipped, 0, 1, 1, WHITE_COLOR);
|
wii.grrlib.draw_img(pipe.position, pipe.top_y, nonNull(pipe_flipped), 0, 1, 1, WHITE_COLOR);
|
||||||
wii.grrlib.draw_img(pipe.position, pipe.bottom_y, globalThis.pipe, 0, 1, 1, WHITE_COLOR);
|
wii.grrlib.draw_img(pipe.position, pipe.bottom_y, nonNull(globalThis.pipe), 0, 1, 1, WHITE_COLOR);
|
||||||
pipe.position -= 100 * wii.get_deltatime();
|
pipe.position -= 100 * wii.get_deltatime();
|
||||||
pipe.time_active += wii.get_deltatime();
|
pipe.time_active += wii.get_deltatime();
|
||||||
}
|
}
|
||||||
|
@ -110,18 +129,18 @@ function update() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (timer >= PIPE_SPAWN_TIME) {
|
if (timer >= PIPE_SPAWN_TIME) {
|
||||||
timer = 0;
|
globalThis.timer = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (timer == 0) {
|
if (timer == 0) {
|
||||||
pipes.push(create_pipe());
|
pipes.push(create_pipe());
|
||||||
}
|
}
|
||||||
|
|
||||||
wii.grrlib.draw_img(0, 0, background, 0, 1, 1, WHITE_COLOR);
|
wii.grrlib.draw_img(0, 0, nonNull(background), 0, 1, 1, WHITE_COLOR);
|
||||||
update_bird();
|
update_bird();
|
||||||
for (var i = 0; i < pipes.length; i++) {
|
for (var i = 0; i < pipes.length; i++) {
|
||||||
update_pipe(pipes[i]);
|
update_pipe(pipes[i]);
|
||||||
}
|
}
|
||||||
wii.print("deltatime: " + wii.get_deltatime())
|
wii.print("deltatime: " + wii.get_deltatime())
|
||||||
timer += wii.get_deltatime();
|
globalThis.timer += wii.get_deltatime();
|
||||||
}
|
}
|
||||||
|
|
38
types.d.ts
vendored
38
types.d.ts
vendored
|
@ -1,9 +1,12 @@
|
||||||
declare interface RGBA {}
|
declare interface RGBA {
|
||||||
declare interface FilePtr {}
|
__brand: "RGBA"
|
||||||
declare interface GRRLibTexture {}
|
}
|
||||||
declare interface DrawableObject {
|
declare interface FilePtr {
|
||||||
texture: GRRLibTexture
|
__brand: "FilePtr"
|
||||||
};
|
}
|
||||||
|
declare interface GRRLibTexture {
|
||||||
|
__brand: "GRRLibTexture"
|
||||||
|
}
|
||||||
declare interface Pipe {
|
declare interface Pipe {
|
||||||
top_y: number
|
top_y: number
|
||||||
bottom_y: number
|
bottom_y: number
|
||||||
|
@ -12,17 +15,20 @@ declare interface Pipe {
|
||||||
};
|
};
|
||||||
|
|
||||||
declare namespace wii {
|
declare namespace wii {
|
||||||
|
function print(message: string): void
|
||||||
function exit(): void
|
function exit(): void
|
||||||
function get_file(filename: string) : FilePtr
|
namespace pad {
|
||||||
function get_deltatime() : number
|
function buttons_down(): number
|
||||||
function compare_rgba(color1: RGBA, color2: RGBA) : boolean
|
|
||||||
function print(message: string) : void
|
|
||||||
function rgba(r: number, g: number, b: number, a: number): RGBA
|
|
||||||
namespace grrlib {
|
|
||||||
function load_texture(file: FilePtr) : GRRLibTexture
|
|
||||||
function fill_screen(color: RGBA): void
|
|
||||||
function draw_img(xPos: number, yPos: number, texture: GRRLibTexture, degrees: number, scaleX: number, scaleY: number, color: RGBA) : void
|
|
||||||
function rectangle(x: number, y: number, width: number, height: number, color: RGBA, filled: bool) : void
|
|
||||||
}
|
}
|
||||||
|
namespace grrlib {
|
||||||
|
function load_texture(file: FilePtr): GRRLibTexture
|
||||||
|
function fill_screen(color: RGBA): void
|
||||||
|
function draw_img(xPos: number, yPos: number, texture: GRRLibTexture, degrees: number, scaleX: number, scaleY: number, color: RGBA): void
|
||||||
|
function rectangle(x: number, y: number, width: number, height: number, color: RGBA, filled: bool): void
|
||||||
|
}
|
||||||
|
function get_file(filename: string): FilePtr
|
||||||
|
function get_deltatime(): number
|
||||||
|
function rgba(r: number, g: number, b: number, a: number): RGBA
|
||||||
|
function compare_rgba(color1: RGBA, color2: RGBA): boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue