mpq/stormlib now works on windows
This commit is contained in:
parent
5d95d2ef77
commit
151cbe8739
1
extract.bat
Normal file
1
extract.bat
Normal file
@ -0,0 +1 @@
|
|||||||
|
go run .\tools\mpq --target="assets" extract mpq\d2data.mpq
|
16
formats/mpq/build.go
Normal file
16
formats/mpq/build.go
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
package mpq
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
// Build Tags
|
||||||
|
|
||||||
|
// Windows
|
||||||
|
#cgo windows CFLAGS: -D_MPQ_WINDOWS
|
||||||
|
#cgo windows LDFLAGS: -Lstormlib -lstorm -lwininet -lz -lbz2 -lstdc++
|
||||||
|
|
||||||
|
// Linux
|
||||||
|
#cgo linux CFLAGS: -D_MPQ_LINUX
|
||||||
|
#cgo linux LDFLAGS: -L./stormlib/ -lstorm -lz -lbz2 -lstdc++
|
||||||
|
|
||||||
|
*/
|
||||||
|
import "C"
|
@ -1,22 +1,29 @@
|
|||||||
package mpq
|
package mpq
|
||||||
|
|
||||||
// #cgo LDFLAGS: -L./stormlib/ -lstorm -lz -lbz2 -lstdc++
|
// #ifdef _MPQ_WINDOWS
|
||||||
// #include <stdlib.h>
|
// #include <windows.h>
|
||||||
|
// #include <stdlib.h>
|
||||||
|
// #endif
|
||||||
|
// #ifdef _MPQ_LINUX
|
||||||
|
// #include <stdlib.h>
|
||||||
|
// #define WINAPI
|
||||||
|
// DWORD GetLastError();
|
||||||
|
// #endif
|
||||||
// #define DWORD unsigned int
|
// #define DWORD unsigned int
|
||||||
// #define HANDLE void *
|
// #define HANDLE void *
|
||||||
// #define LONG int
|
// #define LONG int
|
||||||
// #define LPDWORD unsigned int *
|
// #define LPDWORD unsigned int *
|
||||||
// #define LPOVERLAPPED void *
|
// #define LPOVERLAPPED void *
|
||||||
// #define TCHAR char
|
// #define TCHAR char
|
||||||
// #define WINAPI
|
|
||||||
// #define bool unsigned char
|
// #define bool unsigned char
|
||||||
// bool WINAPI SFileOpenArchive(const TCHAR * szMpqName, DWORD dwPriority, DWORD dwFlags, HANDLE * phMpq);
|
//
|
||||||
// bool WINAPI SFileCloseArchive(HANDLE hMpq);
|
// bool WINAPI SFileOpenArchive(const TCHAR * szMpqName, DWORD dwPriority, DWORD dwFlags, HANDLE * phMpq);
|
||||||
// bool WINAPI SFileOpenFileEx(HANDLE hMpq, const char * szFileName, DWORD dwSearchScope, HANDLE * phFile);
|
// bool WINAPI SFileCloseArchive(HANDLE hMpq);
|
||||||
|
// bool WINAPI SFileOpenFileEx(HANDLE hMpq, const char * szFileName, DWORD dwSearchScope, HANDLE * phFile);
|
||||||
// DWORD WINAPI SFileSetFilePointer(HANDLE hFile, LONG lFilePos, LONG * plFilePosHigh, DWORD dwMoveMethod);
|
// DWORD WINAPI SFileSetFilePointer(HANDLE hFile, LONG lFilePos, LONG * plFilePosHigh, DWORD dwMoveMethod);
|
||||||
// bool WINAPI SFileReadFile(HANDLE hFile, void * lpBuffer, DWORD dwToRead, LPDWORD pdwRead, LPOVERLAPPED lpOverlapped);
|
// bool WINAPI SFileReadFile(HANDLE hFile, void * lpBuffer, DWORD dwToRead, LPDWORD pdwRead, LPOVERLAPPED lpOverlapped);
|
||||||
// bool WINAPI SFileCloseFile(HANDLE hFile);
|
// bool WINAPI SFileCloseFile(HANDLE hFile);
|
||||||
// DWORD GetLastError();
|
//
|
||||||
import "C"
|
import "C"
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
@ -65,7 +72,7 @@ func (f *file) Read(data []byte) (int, error) {
|
|||||||
var bytesRead int
|
var bytesRead int
|
||||||
if result := C.SFileReadFile(f.handle, unsafe.Pointer(&data[0]), C.uint(len(data)), (*C.uint)(unsafe.Pointer(&bytesRead)), nil); result == 0 {
|
if result := C.SFileReadFile(f.handle, unsafe.Pointer(&data[0]), C.uint(len(data)), (*C.uint)(unsafe.Pointer(&bytesRead)), nil); result == 0 {
|
||||||
lastError := getLastError()
|
lastError := getLastError()
|
||||||
if lastError == 1002 { // ERROR_HANDLE_EOF
|
if lastError == 1002 || lastError == 38 { // ERROR_HANDLE_EOF
|
||||||
return bytesRead, io.EOF
|
return bytesRead, io.EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -161,7 +168,7 @@ func (a *archive) buildPathMap() error {
|
|||||||
for _, line := range lines {
|
for _, line := range lines {
|
||||||
pathInt := strings.TrimSpace(line)
|
pathInt := strings.TrimSpace(line)
|
||||||
if len(pathInt) > 0 {
|
if len(pathInt) > 0 {
|
||||||
pathExt := santizePath(pathInt)
|
pathExt := sanitizePath(pathInt)
|
||||||
a.paths[pathExt] = pathInt
|
a.paths[pathExt] = pathInt
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -169,7 +176,7 @@ func (a *archive) buildPathMap() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func santizePath(path string) string {
|
func sanitizePath(path string) string {
|
||||||
return strings.ToLower(strings.Replace(path, "\\", string(os.PathSeparator), -1))
|
return strings.ToLower(strings.Replace(path, "\\", string(os.PathSeparator), -1))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
11
formats/mpq/readme.txt
Normal file
11
formats/mpq/readme.txt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
To compile and install stormlib on windows with mingw64:
|
||||||
|
|
||||||
|
Copy the stormlib folder to an easy to access directory. I used /mingw64/home/thegtproject/stormlib
|
||||||
|
|
||||||
|
(from mingw64 console)
|
||||||
|
|
||||||
|
$ cd /mingw64/home/thegtproject/stormlib
|
||||||
|
$ cmake -DCMAKE_SYSTEM_NAME="windows" -DCMAKE_INSTALL_PREFIX="/mingw64" .
|
||||||
|
$ make && make install
|
||||||
|
|
||||||
|
Done.
|
@ -5,7 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/FooSoft/lazarus/formats/mpq"
|
"github.com/FooSoft/lazarus/formats/mpq"
|
||||||
"github.com/bmatcuk/doublestar"
|
"github.com/bmatcuk/doublestar"
|
||||||
@ -57,8 +57,8 @@ func extract(mpqPath, filter, targetDir string) error {
|
|||||||
}
|
}
|
||||||
defer resFile.Close()
|
defer resFile.Close()
|
||||||
|
|
||||||
sysPath := path.Join(targetDir, resPath)
|
sysPath := filepath.Join(targetDir, resPath)
|
||||||
if err := os.MkdirAll(path.Dir(sysPath), 0777); err != nil {
|
if err := os.MkdirAll(filepath.Dir(sysPath), 0777); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -85,7 +85,7 @@ func main() {
|
|||||||
)
|
)
|
||||||
|
|
||||||
flag.Usage = func() {
|
flag.Usage = func() {
|
||||||
fmt.Fprintf(os.Stderr, "Usage: %s [options] command [files]\n", path.Base(os.Args[0]))
|
fmt.Fprintf(os.Stderr, "Usage: %s [options] command [files]\n", filepath.Base(os.Args[0]))
|
||||||
fmt.Fprintf(os.Stderr, "Parameters:\n\n")
|
fmt.Fprintf(os.Stderr, "Parameters:\n\n")
|
||||||
flag.PrintDefaults()
|
flag.PrintDefaults()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user