1
0

Тайлбар байхгүй

s4n af677e3131 Update Linux/Mac txt2gam binaries to be Unicode aware 8 жил өмнө
QSP b1b810a449 :new: add QSP execs to git and update makeqsp.bat to use it. 8 жил өмнө
locations fb18365428 Changed some of the gosubs to gotos as they fitted the use better, and corrected the 2x 'shulv_sexev1_sonya' error 8 жил өмнө
.gitignore 2d0357cbe4 reversing EKays MakeQSP removal and restoring .gitignore to original version 8 жил өмнө
.gitlab-ci.yml a3b29781e5 Add GitLab CI config 8 жил өмнө
CHANGELOG 1b7b8b9496 Update CHANGELOG 8 жил өмнө
CONTRIBUTING.md a4780efa1c :wrench: spelling ... 8 жил өмнө
Get Image Paths.ahk af42946de5 Image Updates 8 жил өмнө
Image List - Missing.txt 1d143420e5 Update missing images for 'Monztah/V1.1.3-Patches' changes 9 жил өмнө
Image List - Used.txt af42946de5 Image Updates 8 жил өмнө
Images List - Dupes.txt 6c3fc127be Dupe Image Check 8 жил өмнө
MakeQSP.bat b1b810a449 :new: add QSP execs to git and update makeqsp.bat to use it. 8 жил өмнө
Move Image Files.ahk 409cecf813 Automate script for changing image names on disk 9 жил өмнө
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 жил өмнө
QSP_Analyser.exe 780d79bee4 Set missing images to 'Image_needed.png' placeholder 9 жил өмнө
README.md 0120a2c015 Update README.md 8 жил өмнө
check_consistency.py f6864a30d2 added a consistency checker and small bug fix in txtmerge 9 жил өмнө
check_images.py 261ca99f06 closing files before opening new ones 9 жил өмнө
dinParty 61bf19fd70 Added missing header and footings for dinParty and removed extra end in lesbisubhouse 8 жил өмнө
glife-notepad++ fcd4fbe3e6 Typo fixes and minor cleanup 8 жил өмнө
glife.qproj fcd4fbe3e6 Typo fixes and minor cleanup 8 жил өмнө
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 жил өмнө
txtmerge.py 6d9f4d80bc Minor txtmerge.py fix 9 жил өмнө
txtsplit.py 258abc7b26 splitting locations correctly, and changed {Processing} to not have parens 9 жил өмнө
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?