ebiten/_docs/gen.go

147 lines
2.9 KiB
Go
Raw Normal View History

2014-12-27 16:26:33 +01:00
// Copyright 2014 Hajime Hoshi
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// +build ignore
package main
import (
2014-12-29 15:52:37 +01:00
"fmt"
2014-12-27 16:26:33 +01:00
"html/template"
"io/ioutil"
"log"
"os"
2014-12-29 15:52:37 +01:00
"os/exec"
2014-12-27 16:26:33 +01:00
"path/filepath"
2014-12-27 22:18:23 +01:00
"regexp"
2014-12-29 15:16:02 +01:00
"strings"
2014-12-27 16:26:33 +01:00
)
const (
outputPath = "public/index.html"
2014-12-29 15:16:02 +01:00
templatePath = "index.tmpl.html"
2014-12-27 16:26:33 +01:00
)
2014-12-29 15:16:02 +01:00
var license = ""
2014-12-27 16:26:33 +01:00
2014-12-29 15:16:02 +01:00
func init() {
b, err := ioutil.ReadFile("../license.txt")
if err != nil {
panic(err)
}
license = string(b)
// TODO: Year check
}
2014-12-27 16:26:33 +01:00
2014-12-29 15:16:02 +01:00
var stableVersion = ""
2014-12-27 16:26:33 +01:00
2014-12-29 15:16:02 +01:00
var devVersion = ""
func init() {
b, err := ioutil.ReadFile("../version.txt")
if err != nil {
panic(err)
}
2014-12-29 15:52:37 +01:00
stableVersion = strings.TrimSpace(string(b))
}
func init() {
b, err := exec.Command("git", "show", "master:version.txt").Output()
if err != nil {
panic(err)
}
devVersion = strings.TrimSpace(string(b))
2014-12-29 15:16:02 +01:00
}
2014-12-27 16:26:33 +01:00
func comment(text string) template.HTML {
// TODO: text should be escaped
2014-12-29 15:52:37 +01:00
return template.HTML("<!--\n" + text + "\n-->")
2014-12-27 16:26:33 +01:00
}
func safeHTML(text string) template.HTML {
return template.HTML(text)
}
2014-12-27 22:18:23 +01:00
type example struct {
Name string
}
2014-12-29 10:43:35 +01:00
func (e *example) Width() int {
if e.Name == "blocks" {
return 256
}
return 320
}
func (e *example) Height() int {
if e.Name == "blocks" {
return 240
}
return 240
}
2014-12-27 22:18:23 +01:00
func (e *example) Source() string {
2014-12-29 10:43:35 +01:00
if e.Name == "blocks" {
return "// Please read example/blocks/main.go and example/blocks/blocks/*.go"
}
2014-12-27 22:18:23 +01:00
path := filepath.Join(os.Getenv("GOPATH"), "src", "github.com", "hajimehoshi", "ebiten", "example", e.Name, "main.go")
b, err := ioutil.ReadFile(path)
2014-12-27 16:26:33 +01:00
if err != nil {
2014-12-27 22:18:23 +01:00
panic(err)
2014-12-27 16:26:33 +01:00
}
2014-12-27 22:18:23 +01:00
str := regexp.MustCompile("(?s)^.*?\n\n").ReplaceAllString(string(b), "")
return str
}
2014-12-29 15:16:02 +01:00
func versions() string {
2014-12-29 15:52:37 +01:00
return fmt.Sprintf("v%s (dev: v%s)", stableVersion, devVersion)
2014-12-29 15:16:02 +01:00
}
2014-12-27 22:18:23 +01:00
func main() {
f, err := os.Create(outputPath)
2014-12-27 16:26:33 +01:00
if err != nil {
log.Fatal(err)
}
2014-12-27 22:18:23 +01:00
defer f.Close()
2014-12-27 16:26:33 +01:00
funcs := template.FuncMap{
"comment": comment,
"safeHTML": safeHTML,
}
name := filepath.Base(templatePath)
t, err := template.New(name).Funcs(funcs).ParseFiles(templatePath)
if err != nil {
2014-12-28 17:09:38 +01:00
log.Fatal(err)
2014-12-27 16:26:33 +01:00
}
2014-12-29 15:16:02 +01:00
2014-12-27 22:18:23 +01:00
examples := []example{
2014-12-29 10:43:35 +01:00
{Name: "blocks"},
2014-12-28 07:09:40 +01:00
{Name: "hue"},
2014-12-27 22:18:23 +01:00
{Name: "mosaic"},
{Name: "perspective"},
{Name: "rotate"},
}
data := map[string]interface{}{
2014-12-29 15:52:37 +01:00
"License": license,
"StableVersion": stableVersion,
"DevVersion": devVersion,
"Examples": examples,
2014-12-27 16:26:33 +01:00
}
if err := t.Funcs(funcs).Execute(f, data); err != nil {
log.Fatal(err)
}
}