goal_src: Get rid of *OLD* files in jak1's goal_src (#1736)

* gsrc: delete empty OLD files

* ci: put the right author on the controller updating commits
This commit is contained in:
Tyler Wilding 2022-08-06 12:03:42 -04:00 committed by GitHub
parent 26f19e8b14
commit a72b6e5e01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 17 additions and 54 deletions

View file

@ -1,9 +1,5 @@
name: Inform Pages Repo
# This action triggers an action on our other repo, which will:
# - clone this repo
# - use the latest files to update our progress
on:
push:
branches:
@ -16,7 +12,6 @@ jobs:
name: Inform Pages Repo
if: github.repository == 'open-goal/jak-project'
runs-on: ubuntu-latest
# Set some sort of timeout in the event of run-away builds. We are limited on concurrent jobs so, get rid of them.
timeout-minutes: 10
steps:
- name: Send Dispatch

View file

@ -20,4 +20,7 @@ jobs:
- name: commit version bump
uses: EndBug/add-and-commit@v9
with:
default_author: github_actor
author_name: 'OpenGOALBot'
author_email: 'OpenGOALBot@users.noreply.github.com'
message: "Updating Controller Database"

View file

@ -1,6 +0,0 @@
;;-*-Lisp-*-
(in-package goal)
;; name: citb-drop-plat-L1.gc
;; name in dgo: citb-drop-plat
;; dgos: L1

View file

@ -1,6 +0,0 @@
;;-*-Lisp-*-
(in-package goal)
;; name: fisher-JUNGLE-L1.gc
;; name in dgo: fisher
;; dgos: JUNGLE, L1

View file

@ -1,7 +0,0 @@
;;-*-Lisp-*-
(in-package goal)
;; name: lava.gc
;; name in dgo: lava
;; dgos: WATER-AN

View file

@ -1,6 +0,0 @@
;;-*-Lisp-*-
(in-package goal)
;; name: racer-states-L1-RACERP.gc
;; name in dgo: racer-states
;; dgos: L1, RACERP

View file

@ -1,6 +0,0 @@
;;-*-Lisp-*-
(in-package goal)
;; name: sage-finalboss-L1.gc
;; name in dgo: sage-finalboss
;; dgos: L1

View file

@ -1,6 +0,0 @@
;;-*-Lisp-*-
(in-package goal)
;; name: target-racer-L1-RACERP.gc
;; name in dgo: target-racer
;; dgos: L1, RACERP

View file

@ -1,6 +0,0 @@
;;-*-Lisp-*-
(in-package goal)
;; name: target-racer-h-L1-RACERP.gc
;; name in dgo: target-racer-h
;; dgos: L1, RACERP

View file

@ -1,6 +0,0 @@
;;-*-Lisp-*-
(in-package goal)
;; name: village-obs-L1.gc
;; name in dgo: village-obs
;; dgos: L1

View file

@ -5,6 +5,8 @@
;; name in dgo: dgo-h
;; dgos: KERNEL
;; DECOMP BEGINS
;; I suspect that these are unused, and were for an older version of DGO.
;; All DGO stuff is handled on the IOP.

View file

@ -5,6 +5,8 @@
;; name in dgo: gcommon
;; dgos: KERNEL
;; DECOMP BEGINS
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Game constants
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

View file

@ -5,6 +5,8 @@
;; name in dgo: gkernel-h
;; dgos: KERNEL
;; DECOMP BEGINS
(defconstant *kernel-major-version* 2)
(defconstant *kernel-minor-version* 0)

View file

@ -5,6 +5,8 @@
;; name in dgo: gkernel
;; dgos: KERNEL
;; DECOMP BEGINS
;; Version constants
(define *kernel-version* (the binteger (logior (ash *kernel-major-version* 16) *kernel-minor-version*)))
(define *irx-version* (the-as binteger #x200000))

View file

@ -5,6 +5,8 @@
;; name in dgo: gstate
;; dgos: KERNEL
;; DECOMP BEGINS
#|
Summary of state system:

View file

@ -5,6 +5,8 @@
;; name in dgo: gstring-h
;; dgos: KERNEL
;; DECOMP BEGINS
(define-extern *string-tmp-str* string)
(define-extern *temp-string* string)
(define-extern *stdcon0* string)

View file

@ -5,6 +5,8 @@
;; name in dgo: gstring
;; dgos: KERNEL
;; DECOMP BEGINS
(defmethod length string ((obj string))
"Get the length of a string. Like strlen"
(let ((v1-0 (-> obj data)))