Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port codebase to golang #100

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
21fea23
bshdump written in go
siredmar Jul 12, 2021
a3661ba
removed old cmake environment
siredmar Jul 13, 2021
b4878bc
GAM and COD parsers
siredmar Jan 8, 2024
174fb24
feat(cod): added key/value value types
siredmar Jan 8, 2024
b2d2fb6
feat(cod): added some more cases
siredmar Jan 8, 2024
993580c
feat(cod): added include directive
siredmar Jan 8, 2024
0135b83
fix: got rid of old C++ source in the project tree
siredmar Jan 8, 2024
0216c6a
wip
siredmar Jan 18, 2024
291222b
wip
siredmar Jan 18, 2024
a37b643
texture atlas working
siredmar Jan 19, 2024
134c5c5
added default palette
siredmar Jan 20, 2024
5fd79be
added default palette
siredmar Jan 20, 2024
f80d95c
asset generator wip
siredmar Jan 20, 2024
23a1f41
feat(assets_generator): texture atlas for gfx,sgfx and mgfx working
siredmar Jan 22, 2024
2c4a9b1
wip
siredmar May 22, 2024
3d87194
render wip
siredmar Jun 3, 2024
5baa0b0
wip
siredmar Jun 26, 2024
f7a0f38
islandpng rendering islands working
siredmar Aug 28, 2024
674a045
wtf
siredmar Aug 29, 2024
3028e2d
WIP
siredmar Oct 24, 2024
77e710e
docs: add house tile order docs
siredmar Oct 30, 2024
cdcc9b1
wip
siredmar Nov 19, 2024
843fc00
building_gfx working
siredmar Nov 29, 2024
4951904
building_gfx with animations
siredmar Nov 29, 2024
9df5661
building_gfx for all buildings, rotations and animations working
siredmar Nov 30, 2024
f441acb
feat: building package
siredmar Dec 2, 2024
df6e7ab
WIP
siredmar Dec 2, 2024
e573ccb
WIP
siredmar Dec 9, 2024
f7c45d0
atlas and animations working
siredmar Dec 9, 2024
6e8841c
atlas and animations working
siredmar Dec 9, 2024
517a72e
rendering animations working with ECS
siredmar Dec 10, 2024
ec77494
island_ecs wip
siredmar Dec 12, 2024
1ff5d59
kontor right position
siredmar Dec 16, 2024
3d84395
buildings right position
siredmar Dec 16, 2024
7c1d2a0
sorting WIP
siredmar Dec 16, 2024
feb44d3
wip
siredmar Dec 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
31 changes: 0 additions & 31 deletions .circleci/config.yml

This file was deleted.

100 changes: 0 additions & 100 deletions .clang-format

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: mdcii
on:
push:
branches:
- main

jobs:
build-push-anck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.18"
- run: make
15 changes: 15 additions & 0 deletions .github/workflows/pullrequest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: pullrequest
on:
pull_request:
branches:
- main

jobs:
build-push-anck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.18"
- run: make
10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@

*.png
*.json
out
__debug_*
\.vscode/
build
compile_commands.json
.clangd/
install
bin

tools/
210 changes: 0 additions & 210 deletions CMakeLists.txt

This file was deleted.

Loading