-
Notifications
You must be signed in to change notification settings - Fork 6
Add support for verb conjugation #4
Comments
So I was having a think on this one but I'm having some issues figuring out how to approach it. I took some of the verbs from the current wordlist and tried to throw a conjugation table together just to get an idea.
The problem is I'm not sure how best to actually code rules to reach the different conjugations (in particular speak is an interesting case vs make) nor how well a design built for english will translate to other languages... @BenOvermyer do you have any thoughts about how you want to represent this? Note: the above table leaves out some other things such as adverb modifications for cases like "you were making" and "he/she/it was making" (both past continuous) I think if we can lock down something that works for speak and make the others should fall in line (at least as far as english is concerned). |
@IngCr3at1on When I first thought about this part of the system, I was considering the following constraints to make it easier:
So the pivot points are in what happens to the root form of a given word for tense and subject. The second from last constraint means that the process of generating a verb will need to be altered to have a consistent ending for a given language. |
Add a function that generates a set of verb conjugation rules. Modify the Language struct to include the result as an attribute.
This discussion on Reddit is relevant: https://www.reddit.com/r/conlangs/comments/32q9p1/verbs_conjugation_guide/
The text was updated successfully, but these errors were encountered: