1
0

Няма описание

Kevin_Smarts 31e9502d0f Merge branch 'master' of sovietmercader/glife into master преди 6 години
QSP ed0f20f0cc QSP_Analyzer - add ADDQST,KILLQST,ADDLIB,DELLIB keywords преди 6 години
locations 31e9502d0f Merge branch 'master' of sovietmercader/glife into master преди 6 години
.gitignore 582d4bd524 fix image path, add python3 splitter, update gitignore преди 6 години
.gitlab-ci.yml 08d95c5a5e Trying a revert преди 6 години
CHANGELOG 1b7b8b9496 Update CHANGELOG преди 8 години
CONTRIBUTING.md 7ceaad4ff9 Update CONTRIBUTING.md -- add wiki information преди 7 години
Get Image Paths.ahk af42946de5 Image Updates преди 8 години
Image List - Used.txt af42946de5 Image Updates преди 8 години
Images List - Dupes.txt 6c3fc127be Dupe Image Check преди 8 години
MakeQSP.bat 4e2bad21fd updated the MakeQSP.bat agin, it now uses the video qsp преди 6 години
Move Image Files.ahk 409cecf813 Automate script for changing image names on disk преди 8 години
Move or Rename Missing Image Files.ahk 7db2ccba73 Remove dupe image for images\body\tatvag.jpg преди 8 години
Move or Rename Missing Image Files.exe 3812fc0293 Check Missing / Dupe images преди 8 години
QSP1.xml 15bd202b5c Notepad++ User Defined Language for GLife. QSP1 is for White Background. QSP4 is for Black Background (one I use). преди 7 години
QSP4.xml 15bd202b5c Notepad++ User Defined Language for GLife. QSP1 is for White Background. QSP4 is for Black Background (one I use). преди 7 години
README.md 0120a2c015 Update README.md преди 8 години
To_do_list 0f3063b391 Test commit преди 6 години
build.sh e87fdf4fec Add Windows x86_64 version to build system. преди 7 години
check_consistency.py f6864a30d2 added a consistency checker and small bug fix in txtmerge преди 9 години
check_images.py 42816486c4 check_images.py understands common rand image syntax преди 7 години
glife-notepad++ 03056dccc8 set $home_town variable преди 6 години
glife.qproj cf636646bf fixed wrong files names преди 6 години
keywords_en.xml a38521c084 English translation for QSP. преди 6 години
txt2gam.exe 51b002c20c Added txt2gam преди 9 години
txt2gam.linux af677e3131 Update Linux/Mac txt2gam binaries to be Unicode aware преди 8 години
txt2gam.mac af677e3131 Update Linux/Mac txt2gam binaries to be Unicode aware преди 8 години
txt2gam64.exe e87fdf4fec Add Windows x86_64 version to build system. преди 7 години
txtmerge.py 6d9f4d80bc Minor txtmerge.py fix преди 9 години
txtsplit.py 258abc7b26 splitting locations correctly, and changed {Processing} to not have parens преди 9 години
txtsplit3.py 582d4bd524 fix image path, add python3 splitter, update gitignore преди 6 години
userDefineLang.xml 5a88feae51 Notepad++ Syntax highlighting for quest преди 9 години

README.md

Girl Life (ЭТО) [English Community Version] - github edition

Quick start (for Unixy machines)

  • clone/fork the repo
  • make edits to the files in locations
  • run ./txtmerge.py locations glife.txt
  • run wine txt2gam.exe glife.txt glife.qsp
  • test that it works
  • commit your changes
  • push and/or send a pull request

Quick start (for Windows machines)

  • Double click the MakeQSP.bat
  • Enjoy :)

What exactly is all this?

In an effort to make editing the text of Girl Life easier, I set up this repo. This is based on the english community version. There are two branches: master and releases. On the master branch I will keep my version of the game as I make edits, merge pull requests, etc. while the releases is where you'd get things that you expect to actually work.

Where are the images?

Not here. Shouldn't you know this already?

What is glife.txt?

It turns out that glife.qsp is not the friendliest format for this game, but if you use qgen you can export the game in what they call TXT2GAM format. This is how glife.txt is obtained. Note that this is a large text file encoded in UTF-16, so git still has some trouble with it.

What are the python scripts?

Since glife.txt is large and in UTF-16, I wrote two scripts, one that splits this file into one file per location, and puts them in locations after turning them to UTF-8, another that takes the UTF-8 files from locations and generates a UTF-16 file in TXT2GAM format.

I modified something in locations, ran the txtmerge.py script, now what?

Assuming you ran something like

./txtmerge.py locations glife.txt

you now need to turn glife.txt into a qsp file. On my system, I use wine to run txt2gam.exe, works quite well:

wine txt2gam.exe glife.txt glife.qsp

Where do I get qgen and txt2gam.exe?