Compare commits
4 commits
0d9c02dff6
...
3deeb4cf80
Author | SHA1 | Date | |
---|---|---|---|
|
3deeb4cf80 | ||
|
5120a19a28 | ||
|
bd631ebff9 | ||
|
1cbaac47cd |
12 changed files with 103 additions and 69 deletions
|
@ -1,25 +1,4 @@
|
|||
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.231.5/containers/go/.devcontainer/base.Dockerfile
|
||||
ARG VARIANT="1.21-bullseye"
|
||||
FROM mcr.microsoft.com/devcontainers/go:1-${VARIANT}
|
||||
|
||||
# [Choice] Go version (use -bullseye variants on local arm64/Apple Silicon): 1, 1.16, 1.17, 1-bullseye, 1.16-bullseye, 1.17-bullseye, 1-buster, 1.16-buster, 1.17-buster
|
||||
ARG VARIANT="1.18-bullseye"
|
||||
FROM mcr.microsoft.com/vscode/devcontainers/go:0-${VARIANT}
|
||||
|
||||
# [Choice] Node.js version: none, lts/*, 16, 14, 12, 10
|
||||
ARG NODE_VERSION="none"
|
||||
RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi
|
||||
|
||||
# [Optional] Uncomment this section to install additional OS packages.
|
||||
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
||||
&& apt-get -y install --no-install-recommends graphviz cmake zlib1g-dev genisoimage
|
||||
RUN cd /tmp && git clone https://github.com/hamstergene/libdmg-hfsplus \
|
||||
&& cd libdmg-hfsplus && cmake . -B build && make -C build/dmg -j8 && cp build/dmg/dmg /usr/local/bin \
|
||||
&& rm -rf /tmp/libdmg-hfsplus
|
||||
|
||||
# [Optional] Uncomment the next lines to use go get to install anything else you need
|
||||
USER vscode
|
||||
# RUN go get -x <your-dependency-or-tool>
|
||||
# RUN npm install -g @angular/CLI
|
||||
# [Optional] Uncomment this line to install global node packages.
|
||||
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1
|
||||
RUN go install github.com/tc-hib/go-winres@latest \
|
||||
&& go install github.com/goreleaser/goreleaser@latest
|
||||
USER vscode
|
|
@ -1,40 +1,32 @@
|
|||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
||||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.231.5/containers/go
|
||||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
||||
// README at: https://github.com/devcontainers/templates/tree/main/src/go
|
||||
{
|
||||
"name": "Go",
|
||||
"build": {
|
||||
"dockerfile": "Dockerfile",
|
||||
"args": {
|
||||
// Update the VARIANT arg to pick a version of Go: 1, 1.18, 1.17
|
||||
// Append -bullseye or -buster to pin to an OS version.
|
||||
// Use -bullseye variants on local arm64/Apple Silicon.
|
||||
"VARIANT": "1.18",
|
||||
// Options
|
||||
"NODE_VERSION": "lts/*"
|
||||
"VARIANT": "1.21"
|
||||
}
|
||||
},
|
||||
"runArgs": [
|
||||
"--cap-add=SYS_PTRACE",
|
||||
"--security-opt",
|
||||
"seccomp=unconfined"
|
||||
],
|
||||
// Set *default* container specific settings.json values on container create.
|
||||
"settings": {
|
||||
"go.toolsManagement.checkForUpdates": "local",
|
||||
"go.useLanguageServer": true,
|
||||
"go.gopath": "/go"
|
||||
"customizations": {
|
||||
// Configure properties specific to VS Code.
|
||||
"vscode": {
|
||||
// Set *default* container specific settings.json values on container create.
|
||||
"settings": {
|
||||
"go.toolsManagement.checkForUpdates": "local",
|
||||
"go.useLanguageServer": true,
|
||||
"go.gopath": "/go"
|
||||
},
|
||||
"extensions": [
|
||||
"golang.Go",
|
||||
"jinliming2.vscode-go-template",
|
||||
"golang.go"
|
||||
]
|
||||
}
|
||||
},
|
||||
// Add the IDs of extensions you want installed when the container is created.
|
||||
"extensions": [
|
||||
"golang.Go",
|
||||
"jinliming2.vscode-go-template",
|
||||
"golang.go"
|
||||
],
|
||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||
// "forwardPorts": [],
|
||||
// Use 'postCreateCommand' to run commands after the container is created.
|
||||
// "postCreateCommand": "go version",
|
||||
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
||||
"remoteUser": "vscode",
|
||||
"features": {}
|
||||
"features": {
|
||||
"ghcr.io/devcontainers-contrib/features/apt-get-packages:1": {
|
||||
"packages": "genisoimage"
|
||||
}
|
||||
}
|
||||
}
|
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
|||
- name: Set up Go
|
||||
uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: 1.18
|
||||
go-version: 1.21
|
||||
|
||||
- name: Build
|
||||
run: cd backend && go build -v ./...
|
||||
|
@ -33,13 +33,13 @@ jobs:
|
|||
- name: Set up Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.18
|
||||
go-version: 1.21
|
||||
|
||||
- name: Run GoReleaser
|
||||
uses: goreleaser/goreleaser-action@v2
|
||||
with:
|
||||
version: latest
|
||||
workdir: backend
|
||||
args: release --rm-dist
|
||||
args: release --clean
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@ -1,2 +1,5 @@
|
|||
gen:
|
||||
go run analyze.go -g=true
|
||||
go run analyze.go -g=true
|
||||
|
||||
analyze:
|
||||
go run analyze.go -l -a /workspaces/LegendsBrowser2/inputs4
|
|
@ -4281,6 +4281,7 @@
|
|||
"Base": true,
|
||||
"Plus": false,
|
||||
"Values": {
|
||||
"as a symbol of everlasting peace": true,
|
||||
"part of trade negotiation": true
|
||||
},
|
||||
"Enum": true
|
||||
|
@ -12296,7 +12297,8 @@
|
|||
"Values": {
|
||||
"Autumn": true,
|
||||
"Spring": true,
|
||||
"Summer": true
|
||||
"Summer": true,
|
||||
"Winter": true
|
||||
},
|
||||
"Enum": true
|
||||
},
|
||||
|
|
|
@ -21,9 +21,14 @@ func enumValue(s string) string {
|
|||
}
|
||||
func enumString(s string) string { return strcase.ToDelimited(s, ' ') }
|
||||
|
||||
func startswith(str, prefix string) bool {
|
||||
return strings.HasPrefix(str, prefix)
|
||||
}
|
||||
|
||||
var backendTemplate = template.Must(template.New("").Funcs(template.FuncMap{
|
||||
"enum": enumValue,
|
||||
"enumString": enumString,
|
||||
"startswith": startswith,
|
||||
}).Parse(`// Code generated by legendsbrowser; DO NOT EDIT.
|
||||
package model
|
||||
|
||||
|
@ -234,6 +239,9 @@ func parse{{ $obj.Name }}{{ if $plus }}Plus{{ end }}(p *util.XMLParser{{ if $plu
|
|||
{{- end }}
|
||||
{{- end }}
|
||||
default:
|
||||
{{- if not (startswith $obj.Name "HistoricalEventCollection") }}
|
||||
obj.Details = NewHistoricalEventUnknown(string(data))
|
||||
{{- end }}
|
||||
p.Skip()
|
||||
}
|
||||
if err != nil {
|
||||
|
|
|
@ -15,7 +15,7 @@ package model
|
|||
|
||||
{{- range $name, $obj := $.Objects }}
|
||||
{{- if $obj.IsSubTypeOf "HistoricalEvent" }}
|
||||
func (x *{{ $obj.Name }}) Html(c *context) string { return "UNKNWON {{ $obj.Name }}" }
|
||||
func (x *{{ $obj.Name }}) Html(c *context) string { return "UNKNOWN {{ $obj.Name }}" }
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
`))
|
||||
|
|
|
@ -18,11 +18,17 @@ builds:
|
|||
- amd64
|
||||
archives:
|
||||
- format: zip
|
||||
name_template: "legendsbrowser-{{ .Version }}-{{ .Os }}"
|
||||
replacements:
|
||||
darwin: macos
|
||||
linux: linux
|
||||
windows: win
|
||||
name_template: >-
|
||||
legendsbrowser-
|
||||
{{- .Version }}-
|
||||
{{- if eq .Os "darwin" }}macos
|
||||
{{- else if eq .Os "windows" }}win
|
||||
{{- else }}{{ .Os }}{{ end }}
|
||||
# name_template: "legendsbrowser-{{ .Version }}-{{ .Os }}"
|
||||
# replacements:
|
||||
# darwin: macos
|
||||
# linux: linux
|
||||
# windows: win
|
||||
changelog:
|
||||
sort: asc
|
||||
filters:
|
||||
|
|
|
@ -8,7 +8,7 @@ buildMacOs:
|
|||
GOOS=darwin GOARCH=amd64 go build -o ../bin/legendsbrowser-mac
|
||||
GOOS=darwin GOARCH=arm64 go build -o ../bin/legendsbrowser-mac-m1
|
||||
|
||||
buildMacOsApp:
|
||||
buildMacOsApp: buildMacOs
|
||||
mkdir -p /tmp/build/macos
|
||||
cp -r macos/LegendsBrowser.app /tmp/build/macos/
|
||||
GOOS=darwin GOARCH=amd64 go build -o /tmp/build/macos/LegendsBrowser.app/Contents/MacOS/LegendsBrowser
|
||||
|
|
|
@ -142,7 +142,7 @@ func (x *HistoricalEventAgreementConcluded) Html(c *Context) string { // TODO wo
|
|||
}
|
||||
|
||||
func (x *HistoricalEventAgreementFormed) Html(c *Context) string { // TODO no info
|
||||
return "UNKNWON HistoricalEventAgreementFormed"
|
||||
return "UNKNOWN HistoricalEventAgreementFormed"
|
||||
}
|
||||
|
||||
func (x *HistoricalEventAgreementMade) Html(c *Context) string {
|
||||
|
@ -537,7 +537,7 @@ func (x *HistoricalEventChangeHfState) Html(c *Context) string {
|
|||
case HistoricalEventChangeHfStateMood_Secretive:
|
||||
return c.hf(x.Hfid) + " withdrew from society " + c.site(x.SiteId, "in") + r
|
||||
}
|
||||
return "UNKNWON HistoricalEventChangeHfState"
|
||||
return "UNKNOWN HistoricalEventChangeHfState"
|
||||
}
|
||||
|
||||
func (x *HistoricalEventChangedCreatureType) Html(c *Context) string {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package model
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"html/template"
|
||||
"sort"
|
||||
|
@ -289,3 +290,34 @@ func (r *Reference) Html(c *Context) template.HTML {
|
|||
func (r *River) Id() int {
|
||||
return r.Id_
|
||||
}
|
||||
|
||||
type HistoricalEventUnknown struct {
|
||||
EventType string
|
||||
}
|
||||
|
||||
func NewHistoricalEventUnknown(eventType string) *HistoricalEventUnknown {
|
||||
return &HistoricalEventUnknown{
|
||||
EventType: eventType,
|
||||
}
|
||||
}
|
||||
|
||||
func (x *HistoricalEventUnknown) Type() string { return x.EventType }
|
||||
func (x *HistoricalEventUnknown) RelatedToEntity(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToHf(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToArtifact(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToSite(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToStructure(siteId, id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToRegion(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToWorldConstruction(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToWrittenContent(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToDanceForm(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToMusicalForm(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToPoeticForm(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToMountain(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) RelatedToIdentity(id int) bool { return false }
|
||||
func (x *HistoricalEventUnknown) CheckFields() {}
|
||||
func (x *HistoricalEventUnknown) Html(c *Context) string { return x.EventType }
|
||||
|
||||
func (x *HistoricalEventUnknown) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(make(map[string]any))
|
||||
}
|
||||
|
|
|
@ -4431,11 +4431,14 @@ type HistoricalEventArtifactGivenReason int
|
|||
|
||||
const (
|
||||
HistoricalEventArtifactGivenReason_Unknown HistoricalEventArtifactGivenReason = iota
|
||||
HistoricalEventArtifactGivenReason_AsASymbolOfEverlastingPeace
|
||||
HistoricalEventArtifactGivenReason_PartOfTradeNegotiation
|
||||
)
|
||||
|
||||
func parseHistoricalEventArtifactGivenReason(s string) HistoricalEventArtifactGivenReason {
|
||||
switch s {
|
||||
case "as a symbol of everlasting peace":
|
||||
return HistoricalEventArtifactGivenReason_AsASymbolOfEverlastingPeace
|
||||
case "part of trade negotiation":
|
||||
return HistoricalEventArtifactGivenReason_PartOfTradeNegotiation
|
||||
}
|
||||
|
@ -4444,6 +4447,8 @@ func parseHistoricalEventArtifactGivenReason(s string) HistoricalEventArtifactGi
|
|||
|
||||
func (s HistoricalEventArtifactGivenReason) String() string {
|
||||
switch s {
|
||||
case HistoricalEventArtifactGivenReason_AsASymbolOfEverlastingPeace:
|
||||
return "as a symbol of everlasting peace"
|
||||
case HistoricalEventArtifactGivenReason_PartOfTradeNegotiation:
|
||||
return "part of trade negotiation"
|
||||
}
|
||||
|
@ -18617,6 +18622,7 @@ const (
|
|||
HistoricalEventSiteTributeForcedSeason_Autumn
|
||||
HistoricalEventSiteTributeForcedSeason_Spring
|
||||
HistoricalEventSiteTributeForcedSeason_Summer
|
||||
HistoricalEventSiteTributeForcedSeason_Winter
|
||||
)
|
||||
|
||||
func parseHistoricalEventSiteTributeForcedSeason(s string) HistoricalEventSiteTributeForcedSeason {
|
||||
|
@ -18627,6 +18633,8 @@ func parseHistoricalEventSiteTributeForcedSeason(s string) HistoricalEventSiteTr
|
|||
return HistoricalEventSiteTributeForcedSeason_Spring
|
||||
case "Summer":
|
||||
return HistoricalEventSiteTributeForcedSeason_Summer
|
||||
case "Winter":
|
||||
return HistoricalEventSiteTributeForcedSeason_Winter
|
||||
}
|
||||
return HistoricalEventSiteTributeForcedSeason_Unknown
|
||||
}
|
||||
|
@ -18639,6 +18647,8 @@ func (s HistoricalEventSiteTributeForcedSeason) String() string {
|
|||
return "spring"
|
||||
case HistoricalEventSiteTributeForcedSeason_Summer:
|
||||
return "summer"
|
||||
case HistoricalEventSiteTributeForcedSeason_Winter:
|
||||
return "winter"
|
||||
}
|
||||
return "unknown"
|
||||
}
|
||||
|
@ -25187,6 +25197,7 @@ func parseHistoricalEvent(p *util.XMLParser) (*HistoricalEvent, error) {
|
|||
case "written content composed":
|
||||
obj.Details, err = parseHistoricalEventWrittenContentComposed(p)
|
||||
default:
|
||||
obj.Details = NewHistoricalEventUnknown(string(data))
|
||||
p.Skip()
|
||||
}
|
||||
if err != nil {
|
||||
|
@ -25330,6 +25341,7 @@ func parseHistoricalEventPlus(p *util.XMLParser, obj *HistoricalEvent) (*Histori
|
|||
case "war_peace_rejected":
|
||||
obj.Details, err = parseHistoricalEventPeaceRejectedPlus(p, obj.Details.(*HistoricalEventPeaceRejected))
|
||||
default:
|
||||
obj.Details = NewHistoricalEventUnknown(string(data))
|
||||
p.Skip()
|
||||
}
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue