Skip to content
This repository has been archived by the owner on Apr 25, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1 from vn-tools/tlg6
Browse files Browse the repository at this point in the history
Added support for TLG6
  • Loading branch information
Marcin Kurczewski committed Dec 10, 2014
2 parents a5eaeb8 + 76d3832 commit e8361f3
Show file tree
Hide file tree
Showing 18 changed files with 727 additions and 481 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ EXECUTABLE := tlg2png

SOURCES := $(wildcard $(SRCDIR)*.cc)
OBJECTS := $(SOURCES:$(SRCDIR)%.cc=$(OBJDIR)%.o)
CXXFLAGS := -O3 -Wall -pedantic -std=c++11
CXXFLAGS := -Wall -pedantic -std=c++11
LFLAGS := -lpng
#mingw
#CXXFLAGS := -Wall -pedantic -std=c++11 -static-libgcc -static-libstdc++
#LFLAGS := -llibpng

all: $(EXECUTABLE)

Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ Converts TLG images to PNG.
TLG images are used by games based on Kirikiri engine, which includes titles
such as Fate/Stay Night.

There are two implementations: C++ and Ruby. C++ is *much* faster, but since
nontechnical people might have hard time compiling it, I've kept Ruby version
around.
Requires libpng. To install it with apt-get, run:

C++ version requires libpng. Ruby version depends on RMagick gem.
apt-get install libpng-dev

To download precompiled Windows binaries, head over to
[releases](https://github.com/vn-tools/tlg2png/releases/).
1 change: 0 additions & 1 deletion src-ruby/README.md

This file was deleted.

6 changes: 0 additions & 6 deletions src-ruby/lib/image.rb

This file was deleted.

61 changes: 0 additions & 61 deletions src-ruby/lib/tlg0_reader.rb

This file was deleted.

196 changes: 0 additions & 196 deletions src-ruby/lib/tlg5_reader.rb

This file was deleted.

11 changes: 0 additions & 11 deletions src-ruby/lib/tlg6_reader.rb

This file was deleted.

44 changes: 0 additions & 44 deletions src-ruby/lib/tlg_converter.rb

This file was deleted.

10 changes: 0 additions & 10 deletions src-ruby/lib/tlg_reader.rb

This file was deleted.

Loading

0 comments on commit e8361f3

Please sign in to comment.