Non-Binary Pronoun Discussion [TADS Adv3Lite]

EDIT: The GitHub repo for this extension can be found here!


ORIGINAL POST:

Alright!

@piearty might be interested to know that I’m cutting through the jungles of Adv3Lite to create a flexible gender/pronoun system.

In theory, this was supposed to be easy. I’m finding comments in parts of the library which plainly say “To add more pronouns, simply create the necessary objects and grammars”.

However, it (obviously) turns out to be a lot more involved than this. Quite a few parts of the library heavily depend on the assumption of known, finite pronouns being used, and these pronouns being known and standardized across the entire language.

So, I have my standard for supporting author-designated genders and custom pronouns (including “noun-self” pronouns like “bun/bunself”, which turned out to be the easiest challenge). Using this standard, I’ve tried to reduce the complexity of adding new pronouns to a minimum. Unfortunately, this system doesn’t easily allow an author to assign pronouns in the vocab string; you’ll need to use the new pronouns property instead (for Actors), and manually set the plural and ambiguouslyPlural properties for any applicable plural inanimate objects.

Again, I’m trying to make this as simple as I can for authors, but there are just some things that simply had to be gutted.

This system will also be able to handle characters with multiple pronouns (such as “they/he”, “she/they”, “it/he”, “ze/they”, etc).

Again, a lot of the challenges here come from this: Despite promising easy addition of pronouns, a lot of Adv3/Adv3Lite really doesn’t make it so easy, so I’m trying to make it comfortable with more unknowns, and streamline this process for authors.

The main scope limitation is I’m only promising this can work for English Adv3Lite.

I’ll make this open source in a while and post updates here.

5 Likes

Oh my gosh, thank you!! I’m excited to see.

1 Like

Okay, I’m pretty sure I’ve figured it out.

There’s a chance there could be bugs, but I’m also not completely versed in all the ways that pronouns and conjugation get used in Adv3Lite. At least, I’m not confident I am.

I did a library-wide search for “isHim”, to figure out what parts of the code were using binary genders, and I rewrote them to handle a customizable spectrum, while using the same input-output logic. However, I more understood them as individual units, according to the documentation and comments, and I don’t have the entirety of Adv3Lite in my brain. I’m not entirely sure what use-cases these sections would get caused.

So I’d really appreciate some testing and feedback.

Currently, I’m writing up the documentation, and will post a GitHub link shortly.

1 Like

Kind of off-topic, but why would a character have multiple pronouns?

1 Like

There are a few reasons.

Some people just have multiple pronouns. I go by any pronouns at all, so I’d have a sizeable list if I were to put myself in the game. Some people have a preferred set of pronouns, but will also go by another set. Some people have a specific list of pronouns that they are equally-comfortable with, so any of them could be used at random.

Additionally, if you have a character who is transitioning, then you might want to recognize their desired pronouns for players who have played the game before, but the printed pronouns might be another set in the list that they go by publicly, until they trust the player enough to request different pronouns be used instead, at which point the game will change the listed pronouns, and potentially the list as well.

2 Likes

UPDATE!

The GitHub repo for this extension can be found here!

I’m pretty sure everything works, but if anyone wants to stress-test it, then I’d really appreciate it!

2 Likes

side point (I’m from Southern Italy, former Great Greece) non-binary can be simplified in ternary ?

I’ll explain: classical Greek has three genres (male, female and “mixed” and three numbers (singular, dual and plural) so, at least for couples, all basic bases are covered (male dual, female dual and mixed dual)

Best regards from Italy,
dott. Piergiorgio.

1 Like

Non-binary refers to a single person’s gender identity in this case, which can be basically anything (or nothing), by definition. That’s why I implemented this as a list and streamlined the creation of custom pronouns and such. It’s not really something that could reliably be simplified to ternary, because it cannot be guaranteed to stay within those boundaries or combinations.

2 Likes

Nonbinary refers to any gender identity that is outside of the Western-typical male/female gender binary. It is not just a single 3rd gender.

Personal pronouns (ie 3rd person singular pronouns used to refer to a person) are one of the many ways of expressing a gender identity to the world. Just as most English-speaking men feel like he/him is a pronoun that expresses their binary male gender identity and most English-speaking women feel similarly with she/her and binary female, nonbinary people can feel similarly about the personal pronouns they use.

Because nonbinary genders can be anything (other than only and always a binary gender), any pronouns can be used, and many nonbinary people feel like multiple pronoun sets are a better way of presenting their gender to the world over just one set.

Speaking for myself, I use “se/er” (a neopronoun set) preferentially and “she/her” when around people who don’t know what neopronouns are.

So my first test for this library might be attempting to have different pronouns used for the same person depending on who they’re around.

1 Like

Very curious to see how you implement this! :grin:

1 Like

I am too! I have no idea how to do anything yet!

1 Like

There’s also the older reason, which is that many things that aren’t people can be referred to either as “it” or “he/she” in English. For example, a player being introduced to a fluffy cat might reasonably type either PET IT or PET HIM. Similarly for a ship, which sailors might call HER and non-sailors might call IT.

There’s also the classic IF trope of a mysterious figure that you never see in any detail; if you don’t specify anything, you don’t know whether players will X HIM, X HER, or X THEM. (Or a mysterious figure that you do see in detail but the game avoids ever using third-person pronouns for, like Black in Jigsaw. I don’t actually know what pronouns the game sets for them. I should check that.)

EDIT: Or even X IT, if the player sees a mysterious shadow that may or may not be a person. That seems like a place where literally any third-person pronoun would make sense.

In the classical account (i.e. Dionysius Thrax), there are five! Masculine, feminine, neuter, epicene, and common.

4 Likes