new scoring; fix autoresponder
This commit is contained in:
parent
203a45a01b
commit
4a56ef254a
|
@ -690,7 +690,10 @@ export async function testSmartFilterForPrivateMessage(fromChar: Character.Chara
|
||||||
|
|
||||||
await withNeutralVisibilityPrivateConversation(
|
await withNeutralVisibilityPrivateConversation(
|
||||||
fromChar,
|
fromChar,
|
||||||
async(p) => core.logs.logMessage(p, logMessage)
|
async(p) => {
|
||||||
|
// core.logs.logMessage(p, logMessage)
|
||||||
|
await p.addMessage(logMessage);
|
||||||
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -703,7 +706,7 @@ export async function testSmartFilterForPrivateMessage(fromChar: Character.Chara
|
||||||
core.state.settings.risingFilter.hidePrivateMessages &&
|
core.state.settings.risingFilter.hidePrivateMessages &&
|
||||||
firstTime // subsequent messages bypass this filter on purpose
|
firstTime // subsequent messages bypass this filter on purpose
|
||||||
) {
|
) {
|
||||||
if (core.state.settings.logMessages && originalMessage) {
|
if (core.state.settings.logMessages && originalMessage && firstTime) {
|
||||||
await withNeutralVisibilityPrivateConversation(
|
await withNeutralVisibilityPrivateConversation(
|
||||||
fromChar,
|
fromChar,
|
||||||
async(p) => core.logs.logMessage(p, originalMessage)
|
async(p) => core.logs.logMessage(p, originalMessage)
|
||||||
|
|
|
@ -40,6 +40,8 @@ export class CacheManager {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
private _isVue = true;
|
private _isVue = true;
|
||||||
|
|
||||||
|
private readonly startTime = new Date();
|
||||||
|
|
||||||
static readonly PROFILE_QUERY_DELAY = 400; //1 * 1000;
|
static readonly PROFILE_QUERY_DELAY = 400; //1 * 1000;
|
||||||
|
|
||||||
adCache: AdCache = new AdCache();
|
adCache: AdCache = new AdCache();
|
||||||
|
@ -156,10 +158,15 @@ export class CacheManager {
|
||||||
if (char && char.status !== 'offline') {
|
if (char && char.status !== 'offline') {
|
||||||
const conv = core.conversations.getPrivate(char, true);
|
const conv = core.conversations.getPrivate(char, true);
|
||||||
|
|
||||||
if (conv && conv.messages.length > 0 && Date.now() - _.last(conv.messages)!.time.getTime() < 3 * 60 * 1000) {
|
if (conv && conv.messages.length > 0 && Date.now() - _.last(conv.messages)!.time.getTime() < 5 * 60 * 1000) {
|
||||||
const allMessagesFromThem = _.every(conv.messages, (m) => ('sender' in m) && m.sender.name === conv.character.name);
|
const sessionMessages = _.filter(conv.messages, (m) => m.time.getTime() >= this.startTime.getTime());
|
||||||
|
|
||||||
if (allMessagesFromThem) {
|
const allMessagesFromThem = _.every(
|
||||||
|
sessionMessages,
|
||||||
|
(m) => ('sender' in m) && m.sender.name === conv.character.name
|
||||||
|
);
|
||||||
|
|
||||||
|
if (sessionMessages.length > 0 && allMessagesFromThem) {
|
||||||
await testSmartFilterForPrivateMessage(char);
|
await testSmartFilterForPrivateMessage(char);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -729,28 +729,28 @@ export const kinkMatchWeights = {
|
||||||
export const kinkMatchScoreMap = {
|
export const kinkMatchScoreMap = {
|
||||||
favorite: {
|
favorite: {
|
||||||
favorite: 1,
|
favorite: 1,
|
||||||
yes: 0.5,
|
yes: 0.35,
|
||||||
maybe: -0.65,
|
maybe: -0.35,
|
||||||
no: -1.5
|
no: -1
|
||||||
},
|
},
|
||||||
|
|
||||||
yes: {
|
yes: {
|
||||||
favorite: 0.5,
|
favorite: 0.35,
|
||||||
yes: 0.5,
|
yes: 0.35,
|
||||||
maybe: -0.25,
|
maybe: -0.125,
|
||||||
no: -0.5
|
no: -0.35
|
||||||
},
|
},
|
||||||
|
|
||||||
maybe: {
|
maybe: {
|
||||||
favorite: -0.5,
|
favorite: -0.35,
|
||||||
yes: -0.25,
|
yes: -0.125,
|
||||||
maybe: 0,
|
maybe: 0,
|
||||||
no: 0
|
no: 0
|
||||||
},
|
},
|
||||||
|
|
||||||
no: {
|
no: {
|
||||||
favorite: -1.5,
|
favorite: -1,
|
||||||
yes: -0.65,
|
yes: -0.35,
|
||||||
maybe: 0,
|
maybe: 0,
|
||||||
no: 0
|
no: 0
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,8 @@ import anyAscii from 'any-ascii';
|
||||||
import { Store } from '../site/character_page/data_store';
|
import { Store } from '../site/character_page/data_store';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
BodyType, bodyTypeKinkMapping,
|
BodyType,
|
||||||
|
bodyTypeKinkMapping,
|
||||||
fchatGenderMap,
|
fchatGenderMap,
|
||||||
FurryPreference,
|
FurryPreference,
|
||||||
Gender,
|
Gender,
|
||||||
|
@ -29,7 +30,10 @@ import {
|
||||||
nonAnthroSpecies,
|
nonAnthroSpecies,
|
||||||
Orientation,
|
Orientation,
|
||||||
Position,
|
Position,
|
||||||
PostLengthPreference, postLengthPreferenceMapping, postLengthPreferenceScoreMapping, Scoring,
|
PostLengthPreference,
|
||||||
|
postLengthPreferenceMapping,
|
||||||
|
postLengthPreferenceScoreMapping,
|
||||||
|
Scoring,
|
||||||
Species,
|
Species,
|
||||||
SpeciesMap,
|
SpeciesMap,
|
||||||
speciesMapping,
|
speciesMapping,
|
||||||
|
@ -614,6 +618,10 @@ export class Matcher {
|
||||||
|
|
||||||
log.debug('report.score.kink', this.them.name, this.you.name, scores, weighted);
|
log.debug('report.score.kink', this.them.name, this.you.name, scores, weighted);
|
||||||
|
|
||||||
|
if (scores.favorite.count + scores.yes.count + scores.maybe.count + scores.no.count < 10) {
|
||||||
|
return new Score(Scoring.NEUTRAL);
|
||||||
|
}
|
||||||
|
|
||||||
if (weighted === 0) {
|
if (weighted === 0) {
|
||||||
return new Score(Scoring.NEUTRAL);
|
return new Score(Scoring.NEUTRAL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue