暫無描述

KevinSmarts 62616e0258 Merge remote-tracking branch 'julzor/master' 5 年之前
QSP ed0f20f0cc QSP_Analyzer - add ADDQST,KILLQST,ADDLIB,DELLIB keywords 6 年之前
locations 62616e0258 Merge remote-tracking branch 'julzor/master' 5 年之前
syntax 9db7487d8d [added] menu seeding for the letter F 5 年之前
.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 年之前
README.md b2e1fed9a7 [changed] New comment guidelines for commits 6 年之前
To_do_list 0f3063b391 Test commit 6 年之前
build.sh 5b3abf9217 [fixes] small various fixes for realism 5 年之前
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 8d321d9870 [changes] .qproj names updated from hanter to hunter to match name changes 5 年之前
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 7ac859bf98 [changed] txtsplit and txtmerge to add and read qsrc extension. 6 年之前
txtsplit.py 7ac859bf98 [changed] txtsplit and txtmerge to add and read qsrc extension. 6 年之前
txtsplit3.py 7ac859bf98 [changed] txtsplit and txtmerge to add and read qsrc extension. 6 年之前
userDefineLang.xml 5a88feae51 Notepad++ Syntax highlighting for quest 9 年之前

README.md

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

Formatting comments when posting commits

Please use one of the following terms:

  • fixed
  • changed
  • added
  • removed
  • text edit Added and removed are for files being added or removed, fixed is for bug/code fixes, changed is for when events are changed and text edit is for changes to the text that'll appear on screen. These are for searching to aid those working on the files. Can you also include filenames (unless its a large number of files) and include any description you feel will help. If adding content that is disabled (due to being WIP) can you comment in the file that its disabled and include your name so that it doesn't get activated in error.

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?