summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* fail on missing map assetsstuebinm2021-11-102-7/+14
| | | | (but not (yet?) on missing maps/entrypoints)
* copy map assets (and refuse if any are missing)stuebinm2021-11-103-23/+57
|
* extra module for repository writeoutstuebinm2021-11-105-12/+36
|
* remove dead codestuebinm2021-11-102-41/+11
| | | | | | | | (also fix some hlints) This removes some code that was apparently dead and I never noticed. I only noticed now since it wouldn't work with the newer versions of Aeson anymore.
* little code cleanupstuebinm2021-11-102-8/+6
|
* first example of a map adjustmentstuebinm2021-11-096-42/+96
| | | | | | | | | this also includes some more monad plumbing, and an option for the linter to actually write things out again. Some of the previous commit was reverted a bit since it turned out to be stupid, but overall it was suprisingly easy once I got around to it, so yay! i guess Also includes a fairly silly example of how to use it.
* monad plumbing to let the linter modify thingsstuebinm2021-11-022-14/+24
| | | | | | | I'm not sure if this is the right approach tbh — it lets the LintWriter monad modify its own context, but maybe we might run into cases where lints and modifications depend on each other across longer "distances" than just the context of the linter (i.e. just across a property?)
* better lint messagesstuebinm2021-10-301-10/+10
|
* turns out records are just sugarstuebinm2021-10-301-8/+2
| | | | | (and one that contains almost only mempty can be written much shorter than I thought it could)
* yet more tiled propertiesstuebinm2021-10-302-2/+6
|
* re-enable dependency checkingstuebinm2021-10-302-21/+22
|
* also flipping tileset lint output structurestuebinm2021-10-302-26/+36
|
* added more keys to the Tiled formatstuebinm2021-10-301-30/+51
| | | | (apparently, some of them aren't even in the spec, just the changelog!)
* readable prettyprint for inverted lint outputstuebinm2021-10-302-1/+5
| | | | the previous state was a hacky mess
* flipping the output map structurestuebinm2021-10-304-19/+49
| | | | | | | | for now, just with layers. Instead of listing by layer (and giving lints multiple times), list by lint type (and list all layers in which this lint was applicable). This is a bit wonky for now, but readability of output is much better.
* make aeson instances agree with themselvesstuebinm2021-10-303-198/+79
| | | | | | | | | | | | | | | | This cleans up all the old rubble that came from the Tiled package I originally took from hackage. It now uses generics instead of implementing all the ToJSON and FromJSON instances by hand, and (deserialize . serialise) will now actually return a (semantically) equivalent json. It'll now also reject keys that it doesn't know, which required adding some in several places which the tiled package didn't know about (or which were introduced after it was originally written, dunno). Several more Maybes are required now, to represent the difference between e.g. empty lists and on set value, which does make the code slightly weirder in other places …
* more sensible msg for "property required by"-lintsstuebinm2021-10-301-1/+8
| | | | | the previous state appears to have been an oversight and made no sense at all.
* add tileset property lintingstuebinm2021-10-304-16/+47
| | | | | | this reorganised the whole linting for tilesets somewhat; it's now very similar to that linting layers, and it may be possible to abstract some of the code away ...
* add warning for very large tileset imagesstuebinm2021-10-301-2/+3
|
* add guix-based pipeline building a tarballstuebinm2021-10-051-0/+12
| | | | | the build artefacts should be relocatable and run on (almost?) every system that has a linux kernel underneath.
* guix: use local-filestuebinm2021-10-051-11/+5
|
* pin nixpkgsstuebinm2021-10-043-0/+205
|
* add guix derivation and manifeststuebinm2021-10-041-0/+77
|
* relax dependency versionsstuebinm2021-10-041-2/+2
|
* removed unnecessary dependencystuebinm2021-10-042-5/+3
|
* add default.nixstuebinm2021-10-011-0/+21
|
* rename to walintstuebinm2021-10-014-48/+47
|
* check if assets existstuebinm2021-09-301-8/+40
|
* remove unused Maybestuebinm2021-09-301-4/+4
|
* nicer json output which leaks less haskell namesstuebinm2021-09-305-41/+58
|
* simple map-map link dependency checkingstuebinm2021-09-306-21/+106
| | | | | | | | This is purely based on a set difference, i.e. it won't catch stupid things like a map linking to itself, a map link going only one-way, etc. Also, it only handles map links; it doesn't check if all ressource files referenced by a map actually exist.
* prettier pretty printing and stuffstuebinm2021-09-236-40/+77
| | | | | also, configurable log level, which only required relaxing the type system once!
* some documentationstuebinm2021-09-232-5/+20
|
* handle all maps in entire repositoriesstuebinm2021-09-235-73/+105
| | | | (+ checking that paths don't run outside of respositories)
* very naïve handling of directoriesstuebinm2021-09-237-27/+124
|
* use PrettyPrinter morestuebinm2021-09-204-29/+20
|
* typechecking for path depths!stuebinm2021-09-204-69/+127
| | | | | | This now checks if relative paths are still inside the repository, as a general safety mechanism to stop the linter from accidentally reading other things, as well as a nice hint for users.
* rebuilding the core LintWriter monadstuebinm2021-09-203-93/+68
| | | | | it is no longer an Either since that wasn't used anyways, but is now also a Reader.
* simple parsing of local dependency pathsstuebinm2021-09-204-21/+27
|
* moving code aroundstuebinm2021-09-201-57/+69
|
* lint embedded tilesetsstuebinm2021-09-204-11/+21
|
* lint map things that aren't custom propertiesstuebinm2021-09-202-12/+36
|
* lint general map propertiesstuebinm2021-09-204-72/+121
|
* some properties require non-empty layersstuebinm2021-09-194-46/+92
|
* support for properties that aren't stringsstuebinm2021-09-194-49/+88
| | | | apparently i couldn't read or something?
* collecting map dependenciesstuebinm2021-09-184-20/+70
|
* moved types into Types.hsstuebinm2021-09-185-51/+67
| | | | it's almost as if there's some structure to this code!
* can collect dependencies!stuebinm2021-09-184-25/+56
| | | | | | | There's now a Lint type, which may be either a "true lint" (which is a Hint, which contains some message and level of severity), or a Depends, which indicates that this map depends on some ressource or other (and is otherwise treated as a special info Hint in all other cases)
* type check propertiesstuebinm2021-09-183-56/+42
| | | | | | /finally/ figured out that all properties just look like {name, value, type} so now that's abstracted away and Properties.hs doesn't look like javascript anymore
* tame the stringsstuebinm2021-09-185-49/+62
| | | | | | Adds a PrettyPrint typeclass which operates on Text and should replace Show, since constantly converting strings from linked lists to arrays seems somewhat silly.