-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
70 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,7 +139,7 @@ Other resources in this repository | |
---------------------------------- | ||
|
||
* [`oid-decoder.html`](http://htmlpreview.github.io/?https://github.com/entropia/tip-toi-reveng/blob/master/oid-decoder.html) allows you to manually decode an OID image. | ||
* `scripts/update.sh` downloads all gme files from the Ravensburger server (requires perl and the [XML::Simple](http://search.cpan.org/~grantm/XML-Simple/) module). | ||
* `scripts/update.sh` downloads all gme files from the Ravensburger server (requires perl and the [XML::Simple](http://search.cpan.org/~grantm/XML-Simple/) module). | ||
|
||
Instead of downloading all of them, you can conveniently browse them at <http://tiptoi.vakat.de/>, a service provided by Falko Oldenburg <[email protected]>. | ||
* `gameanalyse.c` and `libtiptoi.c` is an alternative tool to investigate gme | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,12 +11,12 @@ | |
]; in | ||
|
||
{ | ||
flags = { old-locale = false; bytestring_has_builder = true; }; | ||
flags = {}; | ||
package = { | ||
specVersion = "1.10"; | ||
identifier = { name = "tttool"; version = "1.8"; }; | ||
identifier = { name = "tttool"; version = "1.8.1"; }; | ||
license = "MIT"; | ||
copyright = "2013-2017 Joachim Breitner"; | ||
copyright = "2013-2019 Joachim Breitner"; | ||
maintainer = "[email protected]"; | ||
author = "Joachim Breitner"; | ||
homepage = "https://github.com/entropia/tip-toi-reveng"; | ||
|
@@ -28,38 +28,36 @@ | |
components = { | ||
exes = { | ||
"tttool" = { | ||
depends = (([ | ||
depends = [ | ||
(hsPkgs.aeson) | ||
(hsPkgs.base) | ||
(hsPkgs.base64-bytestring) | ||
(hsPkgs.binary) | ||
(hsPkgs.blaze-svg) | ||
(hsPkgs.bytestring) | ||
(hsPkgs.containers) | ||
(hsPkgs.directory) | ||
(hsPkgs.executable-path) | ||
(hsPkgs.filepath) | ||
(hsPkgs.template-haskell) | ||
(hsPkgs.JuicyPixels) | ||
(hsPkgs.aeson) | ||
(hsPkgs.hashable) | ||
(hsPkgs.haskeline) | ||
(hsPkgs.HPDF) | ||
(hsPkgs.JuicyPixels) | ||
(hsPkgs.mtl) | ||
(hsPkgs.natural-sort) | ||
(hsPkgs.optparse-applicative) | ||
(hsPkgs.parsec) | ||
(hsPkgs.process) | ||
(hsPkgs.random) | ||
(hsPkgs.vector) | ||
(hsPkgs.yaml) | ||
(hsPkgs.HPDF) | ||
(hsPkgs.split) | ||
(hsPkgs.optparse-applicative) | ||
(hsPkgs.spool) | ||
(hsPkgs.zlib) | ||
(hsPkgs.natural-sort) | ||
(hsPkgs.blaze-svg) | ||
(hsPkgs.base64-bytestring) | ||
(hsPkgs.template-haskell) | ||
(hsPkgs.text) | ||
] ++ (pkgs.lib).optional (compiler.isGhc && (compiler.version).lt "7.5") (hsPkgs.ghc-prim)) ++ (if flags.old-locale | ||
then [ (hsPkgs.time) (hsPkgs.old-locale) ] | ||
else [ (hsPkgs.time) ])) ++ (if flags.bytestring_has_builder | ||
then [ (hsPkgs.bytestring) ] | ||
else [ (hsPkgs.bytestring) (hsPkgs.bytestring-builder) ]); | ||
(hsPkgs.time) | ||
(hsPkgs.vector) | ||
(hsPkgs.yaml) | ||
(hsPkgs.zlib) | ||
]; | ||
}; | ||
}; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,27 +4,20 @@ synopsis: Working with files for the Tiptoi® pen | |
description: The Ravensburger Tiptoi® pen is programmed via special | ||
files. Their file format has been reverse engineered; this | ||
is a tool to analyse and create such files. | ||
. | ||
For more user-facing documentation, see | ||
<http://tttool.entropia.de/> (in German). | ||
category: Reverse Engineering | ||
homepage: https://github.com/entropia/tip-toi-reveng | ||
license: MIT | ||
license-file: LICENSE | ||
author: Joachim Breitner | ||
maintainer: [email protected] | ||
copyright: 2013-2017 Joachim Breitner | ||
copyright: 2013-2019 Joachim Breitner | ||
build-type: Simple | ||
extra-source-files: README.md | ||
extra-source-files: README.md Changelog.md | ||
cabal-version: >=1.10 | ||
|
||
flag old-locale | ||
description: | ||
If false then depend on time >= 1.5. | ||
. | ||
If true then depend on time < 1.5 together with old-locale. | ||
default: False | ||
|
||
Flag bytestring_has_builder | ||
default: True | ||
|
||
executable tttool | ||
main-is: tttool.hs | ||
other-modules: | ||
|
@@ -51,53 +44,34 @@ executable tttool | |
Commands, | ||
Utils | ||
|
||
build-depends: | ||
base >= 4.9 && < 4.13, | ||
binary >= 0.5 && < 0.9, | ||
containers >= 0.4 && <0.7, | ||
directory >= 1.2 && < 1.4, | ||
executable-path == 0.0.*, | ||
filepath == 1.3.* || == 1.4.*, | ||
template-haskell >= 2.7 && < 2.15, | ||
|
||
JuicyPixels >= 3.2.5 && < 3.4, | ||
aeson >= 0.7 && < 1.5, | ||
hashable == 1.2.*, | ||
haskeline == 0.7.*, | ||
mtl == 2.2.*, | ||
parsec == 3.1.*, | ||
process >= 1.1 && < 1.7, | ||
random >= 1.0 && < 1.2, | ||
vector >= 0.10 && < 0.13, | ||
yaml >= 0.8 && < 0.12, | ||
HPDF >= 1.4.10 && < 1.5, | ||
split == 0.2.*, | ||
optparse-applicative >= 0.13 && < 0.15, | ||
spool == 0.1.*, | ||
zlib >= 0.5 && < 0.7, | ||
natural-sort >= 0.1 && < 0.2, | ||
blaze-svg == 0.3.*, | ||
base64-bytestring == 1.0.*, | ||
text == 1.2.* | ||
|
||
if impl(ghc < 7.5) | ||
build-depends: ghc-prim | ||
|
||
ghc-options: -fcontext-stack=42 | ||
|
||
if flag(old-locale) | ||
build-depends: time == 1.4.*, old-locale | ||
else | ||
build-depends: time >= 1.5 && < 1.9 | ||
|
||
if flag(bytestring_has_builder) | ||
build-depends: | ||
bytestring >= 0.10.4 && < 0.11 | ||
else | ||
build-depends: | ||
bytestring >= 0.10 && < 0.10.4, | ||
bytestring-builder >= 0.10.4.1.1 | ||
|
||
build-depends: aeson >= 0.7 && < 1.5 | ||
build-depends: base >= 4.9 && < 4.13 | ||
build-depends: base64-bytestring == 1.0.* | ||
build-depends: binary >= 0.5 && < 0.9 | ||
build-depends: blaze-svg == 0.3.* | ||
build-depends: bytestring >= 0.10.4 && < 0.11 | ||
build-depends: containers >= 0.4 && <0.7 | ||
build-depends: directory >= 1.2 && < 1.4 | ||
build-depends: executable-path == 0.0.* | ||
build-depends: filepath == 1.3.* || == 1.4.* | ||
build-depends: hashable == 1.2.* | ||
build-depends: haskeline == 0.7.* | ||
build-depends: HPDF >= 1.4.10 && < 1.5 | ||
build-depends: JuicyPixels >= 3.2.5 && < 3.4 | ||
build-depends: mtl == 2.2.* | ||
build-depends: natural-sort >= 0.1 && < 0.2 | ||
build-depends: optparse-applicative >= 0.13 && < 0.15 | ||
build-depends: parsec == 3.1.* | ||
build-depends: process >= 1.1 && < 1.7 | ||
build-depends: random >= 1.0 && < 1.2 | ||
build-depends: split == 0.2.* | ||
build-depends: spool == 0.1.* | ||
build-depends: template-haskell >= 2.7 && < 2.15 | ||
build-depends: text == 1.2.* | ||
build-depends: time >= 1.5 && < 1.9 | ||
build-depends: vector >= 0.10 && < 0.13 | ||
build-depends: yaml >= 0.8 && < 0.12 | ||
build-depends: zlib >= 0.5 && < 0.7 | ||
|
||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
|