Voxglitch Community Feedback

My own little Maya demo.

”Maya” is one of the online companions of my R1N interactive website. I’ve created a vocabulary of 312 words grouped into 8 banks and created a VCV Rack module for sample playback. I hope to have it launch before Christmas for free. :wrapped_gift: :clinking_beer_mugs:

Although the R1N application is uncensored, the module doesn’t contain any adult themes.

Here’s the vocabulary list:

const std::vector<std::string> BANK_0_PRONOUNS = {
    "everyone", "he", "her", "him", "his", "I", "it", "me", "mine", "my",
    "nobody", "one", "our", "she", "someone", "them", "their", "they",
    "us", "we", "you", "your", "yours"
};

// Bank 1: Verbs & Actions
const std::vector<std::string> BANK_1_VERBS = {
    "am", "are", "be", "believe", "break", "build", "burn", "call", "come",
    "dance", "fade", "fall", "feel", "fly", "forget", "give", "go", "grow",
    "hate", "hear", "hold", "hurt", "is", "kiss", "know", "let", "love",
    "make", "miss", "move", "need", "remember", "rise", "run", "say", "see",
    "sing", "speak", "spin", "take", "tell", "think", "touch", "walk",
    "want", "was", "watch"
};

// Bank 2: Descriptors & Adjectives
const std::vector<std::string> BANK_2_DESCRIPTORS = {
    "afraid", "alive", "all", "angry", "bad", "big", "bright", "broken",
    "cold", "dark", "dead", "deep", "enough", "false", "fast", "found",
    "free", "good", "happy", "hard", "high", "hot", "less", "light",
    "lonely", "lost", "loud", "low", "more", "new", "none", "old", "quiet",
    "real", "sad", "slow", "small", "soft", "still", "too", "true", "warm",
    "whole", "wild"
};

// Bank 3: Objects & Nouns
const std::vector<std::string> BANK_3_NOUNS = {
    "arms", "blood", "body", "bones", "death", "door", "dream", "earth",
    "edge", "eyes", "fear", "fire", "hands", "head", "heart", "home",
    "hope", "lie", "life", "mind", "moon", "pain", "peace", "place",
    "rain", "road", "room", "sea", "skin", "sky", "soul", "stars", "storm",
    "sun", "time", "truth", "wall", "war", "water", "wave", "wind", "world"
};

// Bank 4: Connectors & Prepositions
const std::vector<std::string> BANK_4_CONNECTORS = {
    "a", "an", "and", "around", "away", "back", "because", "between", "but",
    "by", "down", "for", "from", "here", "if", "in", "into", "like", "off",
    "on", "or", "out", "over", "so", "than", "the", "then", "there",
    "through", "to", "under", "up", "with", "without"
};

// Bank 5: Time & Place
const std::vector<std::string> BANK_5_TIME = {
    "after", "again", "always", "autumn", "before", "day", "evening",
    "forever", "hour", "moment", "morning", "never", "night", "now", "once",
    "season", "sometimes", "soon", "spring", "summer", "today", "tomorrow",
    "tonight", "when", "winter", "year", "yesterday"
};

// Bank 6: Emotions & States
const std::vector<std::string> BANK_6_EMOTIONS = {
    "bliss", "change", "chaos", "despair", "doubt", "escape", "faith",
    "freedom", "glory", "grace", "grief", "guilt", "joy", "madness",
    "magic", "mercy", "power", "rage", "shadow", "shame", "silence",
    "sorrow", "surrender", "trust", "wonder"
};

// Bank 7: Numbers & Quantities
const std::vector<std::string> BANK_7_NUMBERS = {
    "both", "eight", "first", "five", "four", "half", "hundred", "last",
    "million", "nine", "only", "seven", "six", "ten", "thousand", "three",
    "twice", "two", "zero"
};

// Bank 8: Questions & Interjections
const std::vector<std::string> BANK_8_QUESTIONS = {
    "ah", "even", "hey", "hmm", "how", "just", "maybe", "no", "oh", "ooh",
    "please", "really", "right", "sorry", "thanks", "uh", "well", "what",
    "where", "which", "who", "why", "wow", "wrong", "yes", "yet"
};
6 Likes