2019-06-29 01:37:41 +00:00
|
|
|
import * as _ from 'lodash';
|
2019-07-07 21:44:32 +00:00
|
|
|
import { Character, CharacterInfotag } from '../interfaces';
|
2019-06-29 20:59:29 +00:00
|
|
|
|
|
|
|
/* eslint-disable no-null-keyword */
|
2019-06-29 01:37:41 +00:00
|
|
|
|
|
|
|
export enum TagId {
|
|
|
|
Age = 1,
|
|
|
|
Orientation = 2,
|
|
|
|
Gender = 3,
|
|
|
|
Build = 13,
|
|
|
|
FurryPreference = 29,
|
|
|
|
BdsmRole = 15,
|
|
|
|
Position = 41,
|
|
|
|
BodyType = 51,
|
|
|
|
ApparentAge = 64,
|
|
|
|
RelationshipStatus = 42,
|
|
|
|
Species = 9,
|
|
|
|
LanguagePreference = 49
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum Gender {
|
|
|
|
Male = 1,
|
|
|
|
Female = 2,
|
|
|
|
Transgender = 3,
|
|
|
|
Herm = 32,
|
|
|
|
MaleHerm = 51,
|
|
|
|
Cuntboy = 69,
|
|
|
|
None = 105,
|
|
|
|
Shemale = 141
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum Orientation {
|
|
|
|
Straight = 4,
|
|
|
|
Gay = 5,
|
|
|
|
Bisexual = 6,
|
|
|
|
Asexual = 7,
|
|
|
|
Unsure = 8,
|
|
|
|
BiMalePreference = 89,
|
|
|
|
BiFemalePreference = 90,
|
|
|
|
Pansexual = 127,
|
|
|
|
BiCurious = 128
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum BodyType {
|
|
|
|
Anthro = 122,
|
|
|
|
Feral = 121,
|
|
|
|
Morphable = 123,
|
|
|
|
Varies = 124,
|
|
|
|
Other = 125,
|
|
|
|
Androgynous = 126,
|
|
|
|
Human = 143,
|
|
|
|
Taur = 145
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum KinkPreference {
|
|
|
|
Favorite = 1,
|
|
|
|
Yes = 0.5,
|
2019-06-29 20:59:29 +00:00
|
|
|
Maybe = -0.5,
|
2019-06-29 01:37:41 +00:00
|
|
|
No = -1
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Kink {
|
|
|
|
Females = 554,
|
|
|
|
MaleHerms = 552,
|
|
|
|
Males = 553,
|
|
|
|
Transgenders = 551,
|
|
|
|
Herms = 132,
|
|
|
|
Shemales = 356,
|
|
|
|
Cuntboys = 231,
|
|
|
|
|
|
|
|
OlderCharacters = 109,
|
|
|
|
YoungerCharacters = 197,
|
|
|
|
Ageplay = 196,
|
|
|
|
UnderageCharacters = 207,
|
|
|
|
|
|
|
|
AnthroCharacters = 587,
|
2019-06-29 20:59:29 +00:00
|
|
|
Humans = 609,
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
Mammals = 224
|
|
|
|
}
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
export enum FurryPreference {
|
2019-06-29 01:37:41 +00:00
|
|
|
FurriesOnly = 39,
|
|
|
|
FursAndHumans = 40,
|
|
|
|
HumansOnly = 41,
|
|
|
|
HumansPreferredFurriesOk = 150,
|
|
|
|
FurriesPreferredHumansOk = 149
|
|
|
|
}
|
|
|
|
|
|
|
|
interface GenderKinkIdMap {
|
|
|
|
[key: number]: Kink
|
|
|
|
}
|
|
|
|
|
|
|
|
const genderKinkMapping: GenderKinkIdMap = {
|
|
|
|
[Gender.Female]: Kink.Females,
|
|
|
|
[Gender.Male]: Kink.Males,
|
|
|
|
[Gender.Cuntboy]: Kink.Cuntboys,
|
|
|
|
[Gender.Herm]: Kink.Herms,
|
|
|
|
[Gender.MaleHerm]: Kink.MaleHerms,
|
|
|
|
[Gender.Shemale]: Kink.Shemales,
|
|
|
|
[Gender.Transgender]: Kink.Transgenders
|
|
|
|
};
|
|
|
|
|
|
|
|
// if no species and 'no furry chareacters', === human
|
|
|
|
// if no species and dislike 'antho characters' === human
|
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
export enum Species {
|
2019-06-29 01:37:41 +00:00
|
|
|
Human = 609,
|
|
|
|
Equine = 236,
|
|
|
|
Feline = 212,
|
|
|
|
Canine = 226,
|
|
|
|
Vulpine = 213,
|
|
|
|
Avian = 215,
|
|
|
|
Amphibian = 223,
|
|
|
|
Cervine = 227,
|
|
|
|
Insect = 237,
|
|
|
|
Lapine = 214,
|
|
|
|
Musteline = 328,
|
|
|
|
Dragon = 228,
|
|
|
|
Procyon = 325,
|
|
|
|
Rodent = 283,
|
|
|
|
Ursine = 326,
|
2019-06-29 20:59:29 +00:00
|
|
|
MarineMammal = 309,
|
2019-06-29 01:37:41 +00:00
|
|
|
Primate = 613,
|
|
|
|
Elf = 611,
|
|
|
|
Orc = 615,
|
|
|
|
Fish = 608,
|
|
|
|
Reptile = 225,
|
|
|
|
Anthro = 587,
|
2019-06-29 20:59:29 +00:00
|
|
|
Minotaur = 12121212
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const nonAnthroSpecies = [Species.Human, Species.Elf, Species.Orc];
|
|
|
|
|
2019-07-06 16:49:19 +00:00
|
|
|
const mammalSpecies = [Species.Equine, Species.Feline, Species.Canine, Species.Vulpine, Species.Cervine, Species.Lapine,
|
|
|
|
Species.Musteline, Species.Rodent, Species.Ursine, Species.MarineMammal, Species.Primate, Species.Elf, Species.Orc,
|
|
|
|
Species.Anthro, Species.Minotaur];
|
2019-06-29 01:37:41 +00:00
|
|
|
|
|
|
|
interface SpeciesMap {
|
2019-07-06 16:49:19 +00:00
|
|
|
[key: number]: string[];
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
interface SpeciesStrMap {
|
|
|
|
[key: number]: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const speciesNames: SpeciesStrMap = {
|
|
|
|
[Species.MarineMammal]: 'marine mammals',
|
|
|
|
[Species.Elf]: 'elves',
|
|
|
|
[Species.Fish]: 'fishes'
|
|
|
|
};
|
|
|
|
|
2019-06-29 01:37:41 +00:00
|
|
|
const speciesMapping: SpeciesMap = {
|
|
|
|
[Species.Human]: ['human', 'humanoid', 'angel', 'android'],
|
|
|
|
[Species.Equine]: ['horse', 'stallion', 'mare', 'filly', 'equine', 'shire', 'donkey', 'mule', 'zebra', 'centaur', 'pony' ],
|
2019-07-06 16:49:19 +00:00
|
|
|
[Species.Feline]: ['cat', 'kitten', 'catgirl', 'neko', 'tiger', 'puma', 'lion', 'lioness',
|
|
|
|
'tigress', 'feline', 'jaguar', 'cheetah', 'lynx', 'leopard'],
|
2019-06-29 01:37:41 +00:00
|
|
|
[Species.Canine]: ['dog', 'wolf', 'dingo', 'coyote', 'jackal', 'canine', 'doberman', 'husky'],
|
|
|
|
[Species.Vulpine]: ['fox', 'fennec', 'kitsune', 'vulpine', 'vixen'],
|
|
|
|
[Species.Avian]: ['bird', 'gryphon', 'phoenix', 'roc', 'chimera', 'avian'],
|
|
|
|
[Species.Amphibian]: ['salamander', 'frog', 'toad', 'newt'],
|
|
|
|
[Species.Cervine]: ['deer', 'elk', 'moose'],
|
|
|
|
[Species.Insect]: ['bee', 'wasp', 'spider', 'scorpion', 'ant', 'insect'],
|
|
|
|
[Species.Lapine]: ['bunny', 'rabbit', 'hare', 'lapine'],
|
|
|
|
[Species.Dragon]: ['dragon', 'drake', 'wyvern'],
|
|
|
|
[Species.Musteline]: ['mink', 'ferret', 'weasel', 'stoat', 'otter', 'wolverine', 'marten'],
|
|
|
|
[Species.Procyon]: ['raccoon', 'coatimund', 'longtail'],
|
|
|
|
[Species.Rodent]: ['rat', 'mouse', 'chipmunk', 'squirrel', 'rodent'],
|
|
|
|
[Species.Ursine]: ['bear', 'panda', 'black bear', 'brown bear', 'polar bear'],
|
|
|
|
[Species.MarineMammal]: ['whale', 'killer whale', 'dolphin'],
|
|
|
|
[Species.Primate]: ['monkey', 'ape', 'chimp', 'chimpanzee', 'gorilla'],
|
|
|
|
[Species.Elf]: ['elf'],
|
|
|
|
[Species.Fish]: ['fish', 'shark', 'great white'],
|
|
|
|
[Species.Orc]: ['orc'],
|
|
|
|
[Species.Reptile]: ['chameleon', 'anole', 'alligator', 'snake', 'crocodile', 'lizard'],
|
|
|
|
[Species.Anthro]: ['anthro', 'anthropomorphic'],
|
|
|
|
[Species.Minotaur]: ['minotaur']
|
2019-06-29 20:59:29 +00:00
|
|
|
};
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-07-07 01:37:15 +00:00
|
|
|
|
|
|
|
interface FchatGenderMap {
|
|
|
|
[key: string]: Gender;
|
|
|
|
}
|
|
|
|
|
|
|
|
const fchatGenderMap: FchatGenderMap = {
|
|
|
|
None: Gender.None,
|
|
|
|
Male: Gender.Male,
|
|
|
|
Female: Gender.Female,
|
|
|
|
Shemale: Gender.Shemale,
|
|
|
|
Herm: Gender.Herm,
|
|
|
|
'Male-Herm': Gender.MaleHerm,
|
|
|
|
'Cunt-boy': Gender.Cuntboy,
|
|
|
|
Transgender: Gender.Transgender
|
|
|
|
};
|
|
|
|
|
2019-06-29 01:37:41 +00:00
|
|
|
interface KinkPreferenceMap {
|
|
|
|
[key: string]: KinkPreference;
|
|
|
|
}
|
|
|
|
|
|
|
|
const kinkMapping: KinkPreferenceMap = {
|
|
|
|
favorite: KinkPreference.Favorite,
|
|
|
|
yes: KinkPreference.Yes,
|
|
|
|
maybe: KinkPreference.Maybe,
|
|
|
|
no: KinkPreference.No
|
|
|
|
};
|
|
|
|
|
|
|
|
export interface MatchReport {
|
2019-06-29 20:59:29 +00:00
|
|
|
you: MatchResult;
|
|
|
|
them: MatchResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MatchResultCharacterInfo {
|
|
|
|
species: Species | null;
|
|
|
|
gender: Gender | null;
|
|
|
|
orientation: Orientation | null;
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
export interface MatchResultScores {
|
|
|
|
[key: number]: Score;
|
|
|
|
[TagId.Orientation]: Score;
|
|
|
|
[TagId.Gender]: Score;
|
|
|
|
[TagId.Age]: Score;
|
|
|
|
[TagId.FurryPreference]: Score;
|
|
|
|
[TagId.Species]: Score;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MatchResult {
|
|
|
|
you: Character,
|
|
|
|
them: Character,
|
|
|
|
scores: MatchResultScores;
|
|
|
|
info: MatchResultCharacterInfo;
|
2019-07-07 21:44:32 +00:00
|
|
|
total: number;
|
|
|
|
|
|
|
|
yourAnalysis: CharacterAnalysis;
|
|
|
|
theirAnalysis: CharacterAnalysis;
|
2019-06-29 20:59:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export enum Scoring {
|
|
|
|
MATCH = 1,
|
|
|
|
WEAK_MATCH = 0.5,
|
|
|
|
NEUTRAL = 0,
|
2019-06-29 22:24:44 +00:00
|
|
|
WEAK_MISMATCH = -0.5,
|
2019-06-29 20:59:29 +00:00
|
|
|
MISMATCH = -1
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ScoreClassMap {
|
|
|
|
[key: number]: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const scoreClasses: ScoreClassMap = {
|
|
|
|
[Scoring.MATCH]: 'match',
|
|
|
|
[Scoring.WEAK_MATCH]: 'weak-match',
|
|
|
|
[Scoring.NEUTRAL]: 'neutral',
|
|
|
|
[Scoring.WEAK_MISMATCH]: 'weak-mismatch',
|
|
|
|
[Scoring.MISMATCH]: 'mismatch'
|
|
|
|
};
|
|
|
|
|
|
|
|
export class Score {
|
|
|
|
readonly score: Scoring;
|
|
|
|
readonly description: string;
|
|
|
|
|
|
|
|
constructor(score: Scoring, description: string = '') {
|
|
|
|
if ((score !== Scoring.NEUTRAL) && (description === ''))
|
|
|
|
throw new Error('Description must be provided if score is not neutral');
|
|
|
|
|
|
|
|
this.score = score;
|
|
|
|
this.description = description;
|
|
|
|
}
|
|
|
|
|
|
|
|
getRecommendedClass(): string {
|
2019-07-07 01:37:15 +00:00
|
|
|
return Score.getClasses(this.score);
|
|
|
|
}
|
|
|
|
|
|
|
|
static getClasses(score: Scoring): string {
|
|
|
|
return scoreClasses[score];
|
2019-06-29 20:59:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
|
|
|
|
export class CharacterAnalysis {
|
|
|
|
readonly character: Character;
|
|
|
|
|
|
|
|
readonly gender: Gender | null;
|
|
|
|
readonly orientation: Orientation | null;
|
|
|
|
readonly species: Species | null;
|
|
|
|
readonly furryPreference: FurryPreference | null;
|
|
|
|
readonly age: number | null;
|
|
|
|
|
|
|
|
readonly isAnthro: boolean | null;
|
|
|
|
readonly isHuman: boolean | null;
|
|
|
|
readonly isMammal: boolean | null;
|
|
|
|
|
|
|
|
constructor(c: Character) {
|
|
|
|
this.character = c;
|
|
|
|
|
|
|
|
this.gender = Matcher.getTagValueList(TagId.Gender, c);
|
|
|
|
this.orientation = Matcher.getTagValueList(TagId.Orientation, c);
|
|
|
|
this.species = Matcher.species(c);
|
|
|
|
this.furryPreference = Matcher.getTagValueList(TagId.FurryPreference, c);
|
|
|
|
|
|
|
|
const ageTag = Matcher.getTagValue(TagId.Age, c);
|
|
|
|
|
|
|
|
this.age = ((ageTag) && (ageTag.string)) ? parseInt(ageTag.string, 10) : null;
|
|
|
|
|
|
|
|
this.isAnthro = Matcher.isAnthro(c);
|
|
|
|
this.isHuman = Matcher.isHuman(c);
|
|
|
|
this.isMammal = Matcher.isMammal(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
/**
|
|
|
|
* Answers the question: What YOU think about THEM
|
|
|
|
* Never what THEY think about YOU
|
|
|
|
*
|
|
|
|
* So, when comparing two characters, you have to run it twice (you, them / them, you)
|
|
|
|
* to get the full picture
|
|
|
|
*/
|
2019-06-29 01:37:41 +00:00
|
|
|
export class Matcher {
|
2019-07-07 21:44:32 +00:00
|
|
|
readonly you: Character;
|
|
|
|
readonly them: Character;
|
|
|
|
|
|
|
|
readonly yourAnalysis: CharacterAnalysis;
|
|
|
|
readonly theirAnalysis: CharacterAnalysis;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
|
|
|
|
constructor(you: Character, them: Character, yourAnalysis?: CharacterAnalysis, theirAnalysis?: CharacterAnalysis) {
|
2019-06-29 01:37:41 +00:00
|
|
|
this.you = you;
|
|
|
|
this.them = them;
|
2019-07-07 21:44:32 +00:00
|
|
|
|
|
|
|
this.yourAnalysis = yourAnalysis || new CharacterAnalysis(you);
|
|
|
|
this.theirAnalysis = theirAnalysis || new CharacterAnalysis(them);
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
static generateReport(you: Character, them: Character): MatchReport {
|
2019-07-07 21:44:32 +00:00
|
|
|
const yourAnalysis = new CharacterAnalysis(you);
|
|
|
|
const theirAnalysis = new CharacterAnalysis(them);
|
|
|
|
|
|
|
|
const youThem = new Matcher(you, them, yourAnalysis, theirAnalysis);
|
|
|
|
const themYou = new Matcher(them, you, theirAnalysis, yourAnalysis);
|
2019-06-29 20:59:29 +00:00
|
|
|
|
2019-06-29 01:37:41 +00:00
|
|
|
return {
|
2019-06-29 20:59:29 +00:00
|
|
|
you: youThem.match(),
|
|
|
|
them: themYou.match()
|
|
|
|
};
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
match(): MatchResult {
|
2019-07-07 21:44:32 +00:00
|
|
|
const data: MatchResult = {
|
2019-06-29 20:59:29 +00:00
|
|
|
you: this.you,
|
|
|
|
them: this.them,
|
2019-07-07 21:44:32 +00:00
|
|
|
|
|
|
|
yourAnalysis: this.yourAnalysis,
|
|
|
|
theirAnalysis: this.theirAnalysis,
|
|
|
|
|
2019-07-07 01:37:15 +00:00
|
|
|
total: 0,
|
2019-06-29 20:59:29 +00:00
|
|
|
|
|
|
|
scores: {
|
|
|
|
[TagId.Orientation]: this.resolveOrientationScore(),
|
|
|
|
[TagId.Gender]: this.resolveGenderScore(),
|
|
|
|
[TagId.Age]: this.resolveAgeScore(),
|
|
|
|
[TagId.FurryPreference]: this.resolveFurryPairingsScore(),
|
|
|
|
[TagId.Species]: this.resolveSpeciesScore()
|
|
|
|
},
|
|
|
|
|
|
|
|
info: {
|
|
|
|
species: Matcher.species(this.you),
|
|
|
|
gender: Matcher.getTagValueList(TagId.Gender, this.you),
|
2019-07-06 16:49:19 +00:00
|
|
|
orientation: Matcher.getTagValueList(TagId.Orientation, this.you)
|
2019-06-29 20:59:29 +00:00
|
|
|
}
|
2019-07-07 01:37:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
data.total = _.reduce(
|
|
|
|
data.scores,
|
|
|
|
(accum: number, s: Score) => (accum + s.score),
|
|
|
|
0
|
|
|
|
);
|
|
|
|
|
|
|
|
return data;
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
private resolveOrientationScore(): Score {
|
|
|
|
// Question: If someone identifies themselves as 'straight cuntboy', how should they be matched? like a straight female?
|
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
return Matcher.scoreOrientationByGender(this.yourAnalysis.gender, this.yourAnalysis.orientation, this.theirAnalysis.gender);
|
2019-07-07 01:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
static scoreOrientationByGender(yourGender: Gender | null, yourOrientation: Orientation | null, theirGender: Gender | null): Score {
|
|
|
|
if ((yourGender === null) || (theirGender === null) || (yourOrientation === null))
|
|
|
|
return new Score(Scoring.NEUTRAL);
|
2019-07-07 01:37:15 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
// CIS
|
2019-07-06 16:49:19 +00:00
|
|
|
// tslint:disable-next-line curly
|
2019-07-07 21:44:32 +00:00
|
|
|
if (Matcher.isCisGender(yourGender)) {
|
2019-06-29 20:59:29 +00:00
|
|
|
if (yourGender === theirGender) {
|
|
|
|
// same sex CIS
|
|
|
|
if (yourOrientation === Orientation.Straight)
|
|
|
|
return new Score(Scoring.MISMATCH, 'No <span>same sex</span>');
|
|
|
|
|
|
|
|
if (
|
|
|
|
(yourOrientation === Orientation.Gay)
|
|
|
|
|| (yourOrientation === Orientation.Bisexual)
|
|
|
|
|| (yourOrientation === Orientation.Pansexual)
|
|
|
|
|| ((yourOrientation === Orientation.BiFemalePreference) && (theirGender === Gender.Female))
|
|
|
|
|| ((yourOrientation === Orientation.BiMalePreference) && (theirGender === Gender.Male))
|
|
|
|
)
|
|
|
|
return new Score(Scoring.MATCH, 'Loves <span>same sex</span>');
|
|
|
|
|
|
|
|
if (
|
|
|
|
(yourOrientation === Orientation.BiCurious)
|
|
|
|
|| ((yourOrientation === Orientation.BiFemalePreference) && (theirGender === Gender.Male))
|
|
|
|
|| ((yourOrientation === Orientation.BiMalePreference) && (theirGender === Gender.Female))
|
|
|
|
)
|
|
|
|
return new Score(Scoring.WEAK_MATCH, 'Likes <span>same sex</span>');
|
|
|
|
} else if (Matcher.isCisGender(theirGender)) {
|
|
|
|
// straight CIS
|
|
|
|
if (yourOrientation === Orientation.Gay)
|
|
|
|
return new Score(Scoring.MISMATCH, 'No <span>opposite sex</span>');
|
|
|
|
|
|
|
|
if (
|
|
|
|
(yourOrientation === Orientation.Straight)
|
|
|
|
|| (yourOrientation === Orientation.Bisexual)
|
|
|
|
|| (yourOrientation === Orientation.BiCurious)
|
|
|
|
|| (yourOrientation === Orientation.Pansexual)
|
|
|
|
|| ((yourOrientation === Orientation.BiFemalePreference) && (theirGender === Gender.Female))
|
|
|
|
|| ((yourOrientation === Orientation.BiMalePreference) && (theirGender === Gender.Male))
|
|
|
|
)
|
|
|
|
return new Score(Scoring.MATCH, 'Loves <span>opposite sex</span>');
|
|
|
|
|
|
|
|
if (
|
|
|
|
((yourOrientation === Orientation.BiFemalePreference) && (theirGender === Gender.Male))
|
|
|
|
|| ((yourOrientation === Orientation.BiMalePreference) && (theirGender === Gender.Female))
|
|
|
|
)
|
|
|
|
return new Score(Scoring.WEAK_MATCH, 'Likes <span>opposite sex</span>');
|
|
|
|
}
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return new Score(Scoring.NEUTRAL);
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-06 16:49:19 +00:00
|
|
|
|
|
|
|
static formatKinkScore(score: KinkPreference, description: string): Score {
|
2019-06-29 20:59:29 +00:00
|
|
|
if (score === KinkPreference.No)
|
|
|
|
return new Score(Scoring.MISMATCH, `No <span>${description}</span>`);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (score === KinkPreference.Maybe)
|
2019-06-29 22:24:44 +00:00
|
|
|
return new Score(Scoring.WEAK_MISMATCH, `Hesitant on <span>${description}</span>`);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (score === KinkPreference.Yes)
|
|
|
|
return new Score(Scoring.WEAK_MATCH, `Likes <span>${description}</span>`);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (score === KinkPreference.Favorite)
|
|
|
|
return new Score(Scoring.MATCH, `Loves <span>${description}</span>`);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return new Score(Scoring.NEUTRAL);
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
private resolveSpeciesScore(): Score {
|
|
|
|
const you = this.you;
|
2019-07-07 21:44:32 +00:00
|
|
|
const theirAnalysis = this.theirAnalysis;
|
|
|
|
const theirSpecies = theirAnalysis.species;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (theirSpecies === null)
|
|
|
|
return new Score(Scoring.NEUTRAL);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
const speciesScore = Matcher.getKinkSpeciesPreference(you, theirSpecies);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (speciesScore !== null) {
|
|
|
|
const speciesName = speciesNames[theirSpecies] || `${Species[theirSpecies].toLowerCase()}s`;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-07-06 16:49:19 +00:00
|
|
|
return Matcher.formatKinkScore(speciesScore, speciesName);
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
if (theirAnalysis.isAnthro) {
|
2019-07-02 01:03:28 +00:00
|
|
|
const anthroScore = Matcher.getKinkPreference(you, Kink.AnthroCharacters);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (anthroScore !== null)
|
2019-07-06 16:49:19 +00:00
|
|
|
return Matcher.formatKinkScore(anthroScore, 'anthros');
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
if (theirAnalysis.isMammal) {
|
2019-07-02 01:03:28 +00:00
|
|
|
const mammalScore = Matcher.getKinkPreference(you, Kink.Mammals);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (mammalScore !== null)
|
2019-07-06 16:49:19 +00:00
|
|
|
return Matcher.formatKinkScore(mammalScore, 'mammals');
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return new Score(Scoring.NEUTRAL);
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
formatScoring(score: Scoring, description: string): Score {
|
|
|
|
let type = '';
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
switch (score) {
|
|
|
|
case Scoring.MISMATCH:
|
|
|
|
type = 'No';
|
|
|
|
break;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
case Scoring.WEAK_MISMATCH:
|
2019-06-29 22:24:44 +00:00
|
|
|
type = 'Hesitant on';
|
2019-06-29 20:59:29 +00:00
|
|
|
break;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
case Scoring.WEAK_MATCH:
|
|
|
|
type = 'Likes';
|
|
|
|
break;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
case Scoring.MATCH:
|
|
|
|
type = 'Loves';
|
|
|
|
break;
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return new Score(score, `${type} <span>${description}</span>`);
|
|
|
|
}
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
private resolveFurryPairingsScore(): Score {
|
|
|
|
const you = this.you;
|
2019-07-07 21:44:32 +00:00
|
|
|
const theyAreAnthro = this.theirAnalysis.isAnthro;
|
|
|
|
const theyAreHuman = this.theirAnalysis.isHuman;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
const score = theyAreAnthro
|
|
|
|
? Matcher.furryLikeabilityScore(you)
|
|
|
|
: (theyAreHuman ? Matcher.humanLikeabilityScore(you) : Scoring.NEUTRAL);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 22:24:44 +00:00
|
|
|
if (score === Scoring.WEAK_MATCH)
|
2019-07-06 16:49:19 +00:00
|
|
|
return new Score(
|
|
|
|
score,
|
|
|
|
theyAreAnthro
|
|
|
|
? 'Would prefer <span>humans</span>, ok with anthros'
|
|
|
|
: 'Would prefer <span>anthros</span>, ok with humans'
|
|
|
|
);
|
2019-06-29 22:24:44 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return this.formatScoring(score, theyAreAnthro ? 'furry pairings' : theyAreHuman ? 'human pairings' : '');
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
static furryLikeabilityScore(c: Character): Scoring {
|
|
|
|
const furryPreference = Matcher.getTagValueList(TagId.FurryPreference, c);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (
|
|
|
|
(furryPreference === FurryPreference.FursAndHumans) ||
|
|
|
|
(furryPreference === FurryPreference.FurriesPreferredHumansOk) ||
|
|
|
|
(furryPreference === FurryPreference.FurriesOnly)
|
|
|
|
)
|
|
|
|
return Scoring.MATCH;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (furryPreference === FurryPreference.HumansPreferredFurriesOk)
|
|
|
|
return Scoring.WEAK_MATCH;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (furryPreference === FurryPreference.HumansOnly)
|
|
|
|
return Scoring.MISMATCH;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return Scoring.NEUTRAL;
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
static humanLikeabilityScore(c: Character): Scoring {
|
|
|
|
const humanPreference = Matcher.getTagValueList(TagId.FurryPreference, c);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (
|
|
|
|
(humanPreference === FurryPreference.FursAndHumans)
|
|
|
|
|| (humanPreference === FurryPreference.HumansPreferredFurriesOk)
|
|
|
|
|| (humanPreference === FurryPreference.HumansOnly)
|
|
|
|
)
|
|
|
|
return Scoring.MATCH;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (humanPreference === FurryPreference.FurriesPreferredHumansOk)
|
|
|
|
return Scoring.WEAK_MATCH;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (humanPreference === FurryPreference.FurriesOnly)
|
|
|
|
return Scoring.MISMATCH;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return Scoring.NEUTRAL;
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
private resolveAgeScore(): Score {
|
2019-06-29 01:37:41 +00:00
|
|
|
const you = this.you;
|
2019-07-07 21:44:32 +00:00
|
|
|
const theirAge = this.theirAnalysis.age;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
if (theirAge === null)
|
2019-06-29 20:59:29 +00:00
|
|
|
return new Score(Scoring.NEUTRAL);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
const ageplayScore = Matcher.getKinkPreference(you, Kink.Ageplay);
|
|
|
|
const underageScore = Matcher.getKinkPreference(you, Kink.UnderageCharacters);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if ((theirAge < 16) && (ageplayScore !== null))
|
2019-07-06 16:49:19 +00:00
|
|
|
return Matcher.formatKinkScore(ageplayScore, `ages of ${theirAge}`);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if ((theirAge < 16) && (ageplayScore === null))
|
2019-07-06 16:49:19 +00:00
|
|
|
return Matcher.formatKinkScore(KinkPreference.No, `ages of ${theirAge}`);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-09-24 19:53:43 +00:00
|
|
|
if ((theirAge < 18) && (theirAge >= 16) && (underageScore !== null))
|
2019-07-06 16:49:19 +00:00
|
|
|
return Matcher.formatKinkScore(underageScore, `ages of ${theirAge}`);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
const yourAge = this.yourAnalysis.age;
|
|
|
|
|
2019-07-11 00:36:11 +00:00
|
|
|
if ((yourAge !== null) && (yourAge > 0) && (theirAge > 0) && (yourAge <= 80) && (theirAge <= 80)) {
|
2019-06-29 20:59:29 +00:00
|
|
|
const olderCharactersScore = Matcher.getKinkPreference(you, Kink.OlderCharacters);
|
|
|
|
const youngerCharactersScore = Matcher.getKinkPreference(you, Kink.YoungerCharacters);
|
2019-07-11 00:38:09 +00:00
|
|
|
const ageDifference = Math.abs(yourAge - theirAge);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-07-11 00:38:09 +00:00
|
|
|
if ((yourAge < theirAge) && (olderCharactersScore !== null) && (ageDifference >= 4))
|
2019-07-06 16:49:19 +00:00
|
|
|
return Matcher.formatKinkScore(olderCharactersScore, 'older characters');
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-07-11 00:38:09 +00:00
|
|
|
if ((yourAge > theirAge) && (youngerCharactersScore !== null) && (ageDifference <= 4))
|
2019-07-06 16:49:19 +00:00
|
|
|
return Matcher.formatKinkScore(youngerCharactersScore, 'younger characters');
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return new Score(Scoring.NEUTRAL);
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
private resolveGenderScore(): Score {
|
|
|
|
const you = this.you;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
const theirGender = this.theirAnalysis.gender;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (theirGender === null)
|
|
|
|
return new Score(Scoring.NEUTRAL);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
const genderName = `${Gender[theirGender].toLowerCase()}s`;
|
|
|
|
const genderKinkScore = Matcher.getKinkGenderPreference(you, theirGender);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (genderKinkScore !== null)
|
2019-07-06 16:49:19 +00:00
|
|
|
return Matcher.formatKinkScore(genderKinkScore, genderName);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return new Score(Scoring.NEUTRAL);
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
static getTagValue(tagId: number, c: Character): CharacterInfotag | undefined {
|
|
|
|
return c.infotags[tagId];
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
static getTagValueList(tagId: number, c: Character): number | null {
|
|
|
|
const t = this.getTagValue(tagId, c);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if ((!t) || (!t.list))
|
2019-06-29 01:37:41 +00:00
|
|
|
return null;
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return t.list;
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-07 21:44:32 +00:00
|
|
|
static isCisGender(...genders: Gender[] | null[]): boolean {
|
2019-06-29 20:59:29 +00:00
|
|
|
return _.every(genders, (g: Gender) => ((g === Gender.Female) || (g === Gender.Male)));
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static getKinkPreference(c: Character, kinkId: number): KinkPreference | null {
|
|
|
|
if (!(kinkId in c.kinks))
|
|
|
|
return null;
|
|
|
|
|
2019-07-08 19:08:16 +00:00
|
|
|
const kinkVal = c.kinks[kinkId];
|
|
|
|
|
|
|
|
if (kinkVal === undefined) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof kinkVal === 'string') {
|
|
|
|
return kinkMapping[c.kinks[kinkId] as string];
|
|
|
|
}
|
|
|
|
|
|
|
|
const custom = c.customs[kinkVal];
|
|
|
|
|
|
|
|
if (!custom) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return kinkMapping[custom.choice];
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static getKinkGenderPreference(c: Character, gender: Gender): KinkPreference | null {
|
|
|
|
if (!(gender in genderKinkMapping))
|
|
|
|
return null;
|
|
|
|
|
|
|
|
return this.getKinkPreference(c, genderKinkMapping[gender]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static getKinkSpeciesPreference(c: Character, species: Species): KinkPreference | null {
|
|
|
|
return this.getKinkPreference(c, species);
|
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
static has(c: Character, kinkId: Kink): boolean {
|
2019-06-29 01:37:41 +00:00
|
|
|
const r = Matcher.getKinkPreference(c, kinkId);
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return (r !== null);
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
static isMammal(c: Character): boolean | null {
|
|
|
|
const species = Matcher.species(c);
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (species === null)
|
|
|
|
return null;
|
2019-06-29 01:37:41 +00:00
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return (mammalSpecies.indexOf(species) >= 0);
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static isAnthro(c: Character): boolean | null {
|
|
|
|
const bodyTypeId = this.getTagValueList(TagId.BodyType, c);
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (bodyTypeId === BodyType.Anthro)
|
2019-06-29 01:37:41 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
const speciesId = this.species(c);
|
|
|
|
|
|
|
|
if (!speciesId)
|
|
|
|
return null;
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
return (nonAnthroSpecies.indexOf(speciesId) < 0);
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static isHuman(c: Character): boolean | null {
|
|
|
|
const bodyTypeId = this.getTagValueList(TagId.BodyType, c);
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if (bodyTypeId === BodyType.Human)
|
2019-06-29 01:37:41 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
const speciesId = this.species(c);
|
|
|
|
|
|
|
|
return (speciesId === Species.Human);
|
|
|
|
}
|
|
|
|
|
|
|
|
static species(c: Character): Species | null {
|
|
|
|
let foundSpeciesId: Species | null = null;
|
|
|
|
let match = '';
|
|
|
|
|
|
|
|
const mySpecies = this.getTagValue(TagId.Species, c);
|
|
|
|
|
2019-06-29 20:59:29 +00:00
|
|
|
if ((!mySpecies) || (!mySpecies.string))
|
2019-06-29 01:37:41 +00:00
|
|
|
return Species.Human; // best guess
|
|
|
|
|
|
|
|
const finalSpecies = mySpecies.string.toLowerCase();
|
|
|
|
|
|
|
|
_.each(
|
2019-07-06 16:49:19 +00:00
|
|
|
speciesMapping,
|
|
|
|
(keywords: string[], speciesId: string) => {
|
2019-06-29 01:37:41 +00:00
|
|
|
_.each(
|
|
|
|
keywords,
|
|
|
|
(k: string) => {
|
|
|
|
if ((k.length > match.length) && (finalSpecies.indexOf(k) >= 0)) {
|
|
|
|
match = k;
|
2019-07-06 16:49:19 +00:00
|
|
|
foundSpeciesId = parseInt(speciesId, 10);
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2019-09-24 19:53:43 +00:00
|
|
|
return foundSpeciesId;
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|
2019-07-07 01:37:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
static strToGender(fchatGenderStr: string | undefined): Gender | null {
|
|
|
|
if (fchatGenderStr === undefined) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fchatGenderStr in fchatGenderMap) {
|
|
|
|
return fchatGenderMap[fchatGenderStr];
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2019-06-29 01:37:41 +00:00
|
|
|
}
|