Jump to content

Slynch

Members
  • Posts

    33
  • Joined

  • Last visited

Social Media

  • Steam
    Slynchy

Contact

  • Website
    http://slynch.ovh

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Slynch's Achievements

Fuwa Regular

Fuwa Regular (3/11)

12

Reputation

  1. Since we have access to the decompiled files at least, I started on tools to make translating easier for non devs (or just easier in general). Source here: https://github.com/Slynchy/psb-translation
  2. Awesome, you're a star. I'll take a look at it after work and see what I can do. One thing I'm not clear on; you say we can't rebuild or just that with modification to one of the applications we can? EDIT: Just understood what you meant by replacing index 1's key. I'll see about rebuilding from exm2lib's source code. If anyone else wants to take a stab feel free. EDIT2: Can't compile exm2lib (latest) since I can't find the "as-ps3" and "as-zlib.h" headers. Any idea where to find them? EDIT3: Yeah you weren't joking, author of exm2lib has made some crucial parts private and only the main CPP public.
  3. Hey everyone. I managed to get my hands on a PS4 copy of NEW GAME: THE CHALLENGE STAGE and decrypt the disc. As the game is by 5pb, the files are a familiar "_info.psb.m" and "_body.bin" format, but I cannot seem to extract them, much less repack them. As this game was a JP-only release, I'm very keen to get started on translating it. It's worth mentioning that this game was released closely to the Re:ZERO visual novel, and while I've only got the PSVita version of that, I can venture a guess that it has the same file formats (PSV + PS4 are both little-endian as well). If anyone wants to take a stab, I've uploaded the decrypted (ready for IDA) ELF file, as well as a couple of small sample files: http://slynch.xyz/Downloads/newgame_challengestage_ps4.zip
  4. Oh yes, it definitely requires a bit of elbow grease first; the script needs to be trimmed to exclude content from branches you don't want (e.g. remove textB if you want to keep textA). But it's a 20 minute job, depending on the complexity Although, you say "you want to make a book from VN", but as I said I already have; I am actively reading an arc from Katawa Shoujo from an output produced by this tool, so I know it works (if the elbow grease is applied... ). The tool isn't necessarily designed to 1:1 convert it (although I did prototype a version that could, albeit poorly) but is designed to help convert it. God knows how long it would take to manually extract lines of dialogue and format them into a readable format, even with a decent regex; this tool was made to heavily reduce this time KEY scripts are a pain in the butthole, though. Whereas with Ren'Py there's an indicator as to where dialogue jumps to based on decisions, KEY scripts do not; they are just simply lines of strings, and the only indication of where the dialogue jumps to is if there is a comment that says it At any rate, I would love to make/provide presets for different Ren'Py games but because I am unsure as to the legality of this, I've made my code as "vanilla" as possible, copyright-wise.
  5. Depends on how the flags are placed into the text. Currently working on making the parser work with KEY scripts, and they have the flags preceded by a backslash, whereas with Ren'Py, most (if not all) of the flags are within {} parentheses. If the flags in Remember11 are placed within {} then the parser would work fine. But hey, won't know until it's tried!
  6. If anyone's interested, I just pushed a binary release for Windows for anyone who doesn't want to compile their own code; you can find this on the releases section of the Github page. I'm currently reading Hanako's route of Katawa Shoujo from this tool, so I know it works if setup correctly!
  7. Hello again, Fuwanovel forums! Just stopping by incase anyone is interested in a project I'm currently working on. It's a C++ parser that reads through uncompiled .rpy code and filters out all the unnecessary text, and formats the necessary parts into a plain-text file for further formatting, but the text file will work fine on a Kindle as-is. A technical wizkid can probably program a regex to do the same job, but this is much easier to pick up for the user. Please note that the software is not designed to 1:1 convert script; it is designed to cut the amount of time required to convert a script to eBook manually by roughly 66% by doing the most tedious parts for you. It still requires about an half-hours work to trim the script down to the relevant parts. I do not and cannot condone use of the software with any game you yourself do not have permission to modify/reverse-engineer. The readme on the Github should answer any questions but if you have more, feel free to ask away! The project is open-source and covered by MIT (to comply wtih Ren'Py license) for you to do as ever you like. https://github.com/Slynchy/RPY-eBook Binaries are included in the "Release" section of the Github page, although for scripts that require a bit more configuration you might need to recompile with modification to the DebugStrings code. Here's an image of a test script I ran it through: EDIT: Removed PDF support; wasn't working out
  8. Snow Sakura (or Yukizakura, whatever) is decent but not free unfortunately, although easy to find online I myself just finished the most "normal" arc (Shizune, but this is debatable I guess?) of Katawa Shoujo... I enjoyed it, but didn't live up to the hype. Going to play the other arcs anyway, since people recommend it so highly
  9. Here you go: I also updated the PSD file to include these changes. Same link
  10. It's horribly noticeable at the full 1280x960 resolution
  11. Hello again, Fuwanovel forums! So I recently finished the Clannad VN + anime 100% (thanks to the useful guide on these forums!) and one thing that reaaaaaaaally irritated me was the artwork at the end of the Kyou arc. Her nose looked like she had some sort of scab or something weird like that on it. So I loaded it up in Photoshop and gave her the old-fashioned rhinoplasty. Figured someone somewhere could use it to make a wallpaper or something. Here's a download link; it's in PSD format so you can modify it easier.
  12. Just as a notice, the Snow Sakura port is now in a separate Github page to the engine itself. This is because I intend on making a couple of samples when the engine is more enhanced, to demo the engine, and this is just future-proofing it The engine is now almost fully documented as well, for anyone interested. Then it's onto the to-do list I detailed in the above post... o.0
  13. Thank you! Unfortunately I just entered my last term (or semester, as other countries call it?) of the year at university so I'm awfully busy at the moment! Once I get the time, though, my top-priority is documenting all the code, and providing a skeleton project for people to use. Then my to-do list consists of: Unicode support (doable via a string to Uint8-array converter function?) Better/more transitions Screen-shaking (for scenes where a character gets hit, for example) Auto-clicking (this would take about 10 minutes to implement, just including it in the list so I don't forget...!) Finishing the options menu Cross-platform compiling (I will actually be taught this at university within the next week or so, so I might end up testing it on the engine!) But your comments mean the world to me so thank you!
  14. As everyone has been saying, that image is just not wallpaper-friendly (unless it's a phone). At any rate, here's the best that can be done with that image. A larger resolution of OPs image can be found here.
  15. To keep people here updated, I've been working diligently on this, and have made great strides in the last week I've just pushed v0.4.4 to Github and also released a working- albeit very early- demo of the port working! The source code can, as usual, be seen on the Github link in the OP, and the demo can be found here: https://github.com/Slynchy/Snow-Sakura-CPP/releases/tag/v0.4.4 Here's a few images of the demo version (it has non-working features removed temporarily, which is why the MENU button looks odd ):
×
×
  • Create New...