ebiten/examples/blocks/main.go

48 lines
1.2 KiB
Go
Raw Normal View History

// 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.
2014-12-09 15:16:04 +01:00
2013-07-05 15:25:45 +02:00
package main
import (
2014-12-06 22:03:13 +01:00
"flag"
"log"
"os"
"runtime/pprof"
2016-02-15 17:13:04 +01:00
2020-10-03 19:35:13 +02:00
"github.com/hajimehoshi/ebiten/v2"
"github.com/hajimehoshi/ebiten/v2/examples/blocks/blocks"
2013-07-05 15:25:45 +02:00
)
2014-12-06 22:03:13 +01:00
var cpuProfile = flag.String("cpuprofile", "", "write cpu profile to file")
2013-07-05 15:25:45 +02:00
func main() {
2014-12-06 22:03:13 +01:00
flag.Parse()
if *cpuProfile != "" {
f, err := os.Create(*cpuProfile)
if err != nil {
log.Fatal(err)
}
2016-08-02 18:42:46 +02:00
if err := pprof.StartCPUProfile(f); err != nil {
log.Fatal(err)
}
2014-12-06 22:03:13 +01:00
defer pprof.StopCPUProfile()
}
ebiten.SetWindowSize(blocks.ScreenWidth*2, blocks.ScreenHeight*2)
ebiten.SetWindowTitle("Blocks (Ebitengine Demo)")
if err := ebiten.RunGame(&blocks.Game{}); err != nil {
2014-12-06 22:03:13 +01:00
log.Fatal(err)
}
2013-07-05 15:25:45 +02:00
}