mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-26 03:38:55 +01:00
parent
3276c57976
commit
b9907c03fa
@ -46,6 +46,25 @@ func (d *dll) call(name string, args ...uintptr) uintptr {
|
|||||||
return r
|
return r
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func writeDLLFile(name string) error {
|
||||||
|
f, err := gzip.NewReader(bytes.NewReader(glfwDLLCompressed))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer f.Close()
|
||||||
|
|
||||||
|
out, err := os.Create(name)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer out.Close()
|
||||||
|
|
||||||
|
if _, err := io.Copy(out, f); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func loadDLL() (*dll, error) {
|
func loadDLL() (*dll, error) {
|
||||||
cachedir, err := os.UserCacheDir()
|
cachedir, err := os.UserCacheDir()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -63,22 +82,14 @@ func loadDLL() (*dll, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
f, err := gzip.NewReader(bytes.NewReader(glfwDLLCompressed))
|
// Create a DLL as a temporary file and then rename it later.
|
||||||
if err != nil {
|
// Without the temporary file, writing a DLL might fail in the process of writing and Ebiten cannot
|
||||||
|
// notice that the DLL file is incomplete.
|
||||||
|
if err := writeDLLFile(fn + ".tmp"); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
defer f.Close()
|
|
||||||
|
|
||||||
out, err := os.Create(fn)
|
if err := os.Rename(fn+".tmp", fn); err != nil {
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
defer out.Close()
|
|
||||||
|
|
||||||
if _, err := io.Copy(out, f); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if err := out.Sync(); err != nil {
|
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user