ACSI is a simple program to partially automate the internationalization of existing Character Sheets made for the Roll20 platform. It takes a html file, creates a copy where it places i18n
-tags according to some of the Character Sheet i18n standard. Works on Linux.
- Option 1: Download and install the latest .deb package from the
/linux/
folder. - Option 2: Download the project(If you have
git
installed you can just run the commandgit clone https://github.com/Anduh/acsi.git
and it downloads everything)- Then open the command line in the
acsi
folder and runmake
command. ACSI should compile now from the files in the/src
folder into a new program file simply namedacsi
. (This is not a complete install, only create a local program that can be run inside the folder)
- Then open the command line in the
If it throws errors such as missing file stdio.h
or similar, you might need to also install the build-essential
package.
List of operating systems that ACSI have been successfully installed/compiled on.
Linux:
- Ubuntu 16.4 TLS
- Ubuntu 18.4 TLS
- Linux Mint 19.1 (required install of
build-essential
package)
If you installed ACSI with Optinon 1, you can now call ACSI from the command line with: acsi <filename>
, where you replace <filename>
with the name of your file you want translated(must be a .html
file). Your command line terminal need to be open in the location where your file is located.
If you only compiled ACSI with Option 2, you must place the html file you want translated in the same folder as ACSI is located. You can now call ACSI from the command line with: ./acsi <filename>
.
NOTE: In V0.5, rolltemplates
and sheetworkers
should be removed from the HMTL so ACSI won't trip and make changes to them.
ACSI will read the html file it is given and create a html file(named <originalname>-i18n.html
) where it have inserted the i18n
-tags in the proper places, without touching the original file, and optionally also the .json
translation file, so it doesn't have to be done with a broswer's developer console.
If everything worked out as it should, it should display a short <filename>-i18n.html created!
on the command line. A simple testfile can be found here.
At it's current state, ACSI can only create i18n
-tags for standard text, that doesn't contain many line-breaks or special characters. If a sheet contains lots of commented HTML code, ACSI might be thrown off and produce an unusable result. ACSI is also assumed to be used on a sheet containing no i18n-tags or HTML error, as it isn't yet capable of noticing existing tags nor does it check the validity of HTML syntax.
ACSI is written in C, and relies on a few Unix commands, so it needs to be run in a Linux enviroment to work(Project author uses Ubuntu 16.4 TLS/Linux Mint 19.1). Doesn't rely on any advanced libraries.
If you run ./acsi <filename> t
, ACSI will additionally print in the console the generated tagnames and their contentents.
If you run ./acsi <filename> j
, ACSI will generate the translation file with the name <originalname>.json
.
If you run ./acsi <filename> a
, it will do both options mentioned above.
- doesn't break html tags as often while creating the new file, some reason was due to poor transcribing by
savetxt()
function in some unusual linebreaks and unexpected characters - can optionally generate the translation file alongside creating the translated version of the sheet
- doesn't any longer attempt to ignore html comments, sheetworkers and rolltemplates as the implementation did more harm than good. The advice is to strip the html file from rolltemplates and sheetworkers before being used with ACSI
- minor code cleanup
- removed malfunctioning functions that were searching for
rolltemplate
andscript
sections. It's better to remove those sections from the code before running ACSI than working with the somewhat unreliable V0.32
- fixed segfault
- uploaded v0.32 .deb package
- add .gitattribute to force LF line endings
- optional testmode added
- include a testfile
- code/file cleanup
- fixed credits typo
- rewrote readme
- html comments, sheetworkers and rolltemplates doesn't any longer have a negatively impact when creating
i18n
-tags
- make data tags for text displayed in html elements,
<p>like this text</p>
- treats all text; comments, roll templates & sheetworkers alike, best to avoid if your sheet contains much of it
- autogenerated tags are at times clumsy, and duplicates may arise as it's currently taken in consideration
The primary focus of the project is to prioritize on implementing the largest timesavers when it comes to creating i18n
-tags, and in the end to automate as much as possible of the process. As a secondary goal it serves to improve programming/coding/documentation habits of the participants.
ASCI has a "two birds, one stone" origin from a 'C/Unix'-programming course, which explains the not too optimal choice of C for a text-parsing program. If the interest arise, ACSI could be adapted/rewritten with other libraries/modules/languages for ease of further development, or just portability but it's of lower priority.
The aim for the Alpha version is to have ACSI reliably create 70% of the i18n-tags for any given sheet, and not to get thrown off by to many stray html comments or special characters in unexpected places.
- Ignore
cs>
,cs<
,cf>
,cf<
found in some rolls (credits to David for noticing) - Avoid creating duplicate tags and giving same tagname to sections that aren't identical to each other
- Skip
<script>
,<rolltemplate>
and<charmancer>
sections(sheetworkers) without altering them
V.1.0 aims to reliably create 90% of i18n-tags for any given sheet, and provide more automation options, such as generating the associated translation.json
file.
- make tags for Element Attribute Text like
title
,label
andplaceholder
- make tags for dropdown menu options
- make tags for Roll Templates
create theImplemented in V0.5translation.json
by itself (replicating the browser's console.log() method)- push changes made to a
translation.json
file back to the sheet(so it will be easier to change the autogenerated tags) - make tags for the more complex Variable Replacement and Roll Queries methods
Optional things that could be done which goes beyond the primary goal if ACSI but could be useful or be a good learning experience to implement
- notice if files already have tags, and would only add missing tags
- rewriting to not rely on linux-processes(getting rid of
unistd.h
andsys/.h
libraries), creating Windows/Mac version - making tags for Charactermancer sections
- improve user-friendliness, a simple GUI?
- rework to use more standard command-line syntax
- refactoring search function
- Roll20 specific errorchecking that general html validators don't catch. Checking all
<input>
,<textarea>
fields are named withattr_
prefixes, warn not to useid
-attributes and other known Roll20-specific constrains
- RCSi18n: Roll20 Character Sheet i18n standard
- sheet: Character Sheet, consisting of a html and css file, as well as a translation file if it have been internationalized
- tag, i18n-tag: the unique tagname for a given text segment shown on a character sheet. It's the left side of the
translation.json
. Represented on the html sheet with thedata-i18n
global attribute - translation file: the paired
translation.json
needed to show a character sheet in Roll20 - sheetworkers: JavaScript included in the html sheet inside
<script>
tags (Roll20Wiki page) - roll templates: html sections meant to change how dice rolls are display when rolled from buttons on the sheet (Roll20Wiki page)