4
0

feat: Rename Bomberman to BombExpert

This commit is contained in:
2025-12-05 01:29:08 +01:00
parent 04405066c4
commit 05564c3136
3 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
# Bomberman Clone # BombExpert
A classic Bomberman clone for [TIC-80](https://tic80.com/) fantasy console. A classic BombExpert for [TIC-80](https://tic80.com/) fantasy console.
## Features ## Features
@@ -48,12 +48,12 @@ A classic Bomberman clone for [TIC-80](https://tic80.com/) fantasy console.
### In TIC-80 ### In TIC-80
```bash ```bash
load bomberman.lua load bombexpert.lua
run run
``` ```
### In Browser ### In Browser
Use the HTML export in the `bomberman/` folder with the included server: Use the HTML export in the `bombexpert/` folder with the included server:
```bash ```bash
python serve.py python serve.py
``` ```
@@ -68,7 +68,7 @@ Then open http://localhost:3333 in your browser.
``` ```
bomberman/ bomberman/
├── bomberman.lua # Main game source code ├── bombexpert.lua # Main game source code
├── serve.py # Simple HTTP server for browser testing ├── serve.py # Simple HTTP server for browser testing
└── README.md # This file └── README.md # This file
``` ```

View File

@@ -1,6 +1,6 @@
-- title: Bomberman Clone -- title: BombExpert
-- author: Zsolt Tasnadi -- author: Zsolt Tasnadi
-- desc: Simple Bomberman clone for TIC-80 -- desc: Simple BombExpert for TIC-80
-- site: http://teletype.hu -- site: http://teletype.hu
-- license: MIT License -- license: MIT License
-- version: 0.2 -- version: 0.2
@@ -565,7 +565,7 @@ function Splash.update()
cls(COLOR_BLACK) cls(COLOR_BLACK)
UI.print_shadow("Bomberman", 85, 50, COLOR_BLUE, false, 2) UI.print_shadow("BombExpert", 85, 50, COLOR_BLUE, false, 2)
UI.print_shadow("Clone", 100, 70, COLOR_BLUE, false, 2) UI.print_shadow("Clone", 100, 70, COLOR_BLUE, false, 2)
State.splash_timer = State.splash_timer - 1 State.splash_timer = State.splash_timer - 1
@@ -626,7 +626,7 @@ end
function Menu.update() function Menu.update()
cls(COLOR_BLACK) cls(COLOR_BLACK)
UI.print_shadow("Bomberman", 85, 20, COLOR_BLUE, false, 2) UI.print_shadow("BombExpert", 85, 20, COLOR_BLUE, false, 2)
UI.print_shadow("Clone", 100, 40, COLOR_BLUE, false, 2) UI.print_shadow("Clone", 100, 40, COLOR_BLUE, false, 2)
local cursor_y = 60 + (State.menu_selection - 1) * 14 local cursor_y = 60 + (State.menu_selection - 1) * 14

View File

@@ -7,7 +7,7 @@ import os
import webbrowser import webbrowser
PORT = 3333 PORT = 3333
DIRECTORY = "bomberman" DIRECTORY = "bombexpert"
os.chdir(os.path.join(os.path.dirname(os.path.abspath(__file__)), DIRECTORY)) os.chdir(os.path.join(os.path.dirname(os.path.abspath(__file__)), DIRECTORY))