1
1
import { ButtplugClient , ButtplugNodeWebsocketClientConnector } from "buttplug" ;
2
- import { validateButtplugConfig , type ButtplugConfig } from "./environment" ;
2
+ import { validateIntifaceConfig , type IntifaceConfig } from "./environment" ;
3
3
import type {
4
4
Action ,
5
5
HandlerCallback ,
@@ -15,22 +15,22 @@ import {
15
15
shutdownIntifaceEngine ,
16
16
} from "./utils" ;
17
17
18
- export interface IButtplugService extends Service {
18
+ export interface IIntifaceService extends Service {
19
19
vibrate ( strength : number , duration : number ) : Promise < void > ;
20
20
rotate ?( strength : number , duration : number ) : Promise < void > ;
21
21
getBatteryLevel ?( ) : Promise < number > ;
22
22
isConnected ( ) : boolean ;
23
23
getDevices ( ) : any [ ] ;
24
24
}
25
25
26
- export class ButtplugService extends Service implements IButtplugService {
27
- static serviceType : ServiceType = ServiceType . BUTTPLUG ;
26
+ export class IntifaceService extends Service implements IIntifaceService {
27
+ static serviceType : ServiceType = ServiceType . INTIFACE ;
28
28
private client : ButtplugClient ;
29
29
private connected = false ;
30
30
private devices : Map < string , any > = new Map ( ) ;
31
31
private vibrateQueue : VibrateEvent [ ] = [ ] ;
32
32
private isProcessingQueue = false ;
33
- private config : ButtplugConfig | null = null ;
33
+ private config : IntifaceConfig | null = null ;
34
34
private maxVibrationIntensity = 1 ;
35
35
private rampUpAndDown = false ;
36
36
private rampSteps = 20 ;
@@ -62,16 +62,16 @@ export class ButtplugService extends Service implements IButtplugService {
62
62
}
63
63
await shutdownIntifaceEngine ( ) ;
64
64
} catch ( error ) {
65
- console . error ( "[ButtplugService ] Cleanup error:" , error ) ;
65
+ console . error ( "[IntifaceService ] Cleanup error:" , error ) ;
66
66
}
67
67
}
68
68
69
- getInstance ( ) : IButtplugService {
69
+ getInstance ( ) : IIntifaceService {
70
70
return this ;
71
71
}
72
72
73
73
async initialize ( runtime : IAgentRuntime ) : Promise < void > {
74
- this . config = await validateButtplugConfig ( runtime ) ;
74
+ this . config = await validateIntifaceConfig ( runtime ) ;
75
75
this . preferredDeviceName = this . config . DEVICE_NAME ;
76
76
this . client = new ButtplugClient ( this . config . INTIFACE_NAME ) ;
77
77
@@ -118,7 +118,7 @@ export class ButtplugService extends Service implements IButtplugService {
118
118
await new Promise ( ( r ) => setTimeout ( r , 2000 ) ) ;
119
119
} else {
120
120
console . error (
121
- "Failed to connect to Buttplug server after all retries:" ,
121
+ "Failed to connect to Intiface server after all retries:" ,
122
122
error
123
123
) ;
124
124
throw error ;
@@ -144,7 +144,7 @@ export class ButtplugService extends Service implements IButtplugService {
144
144
145
145
private async ensureDeviceAvailable ( ) {
146
146
if ( ! this . connected ) {
147
- throw new Error ( "Not connected to Buttplug server" ) ;
147
+ throw new Error ( "Not connected to Intiface server" ) ;
148
148
}
149
149
150
150
if ( this . devices . size === 0 ) {
@@ -325,7 +325,7 @@ const vibrateAction: Action = {
325
325
description : "Control vibration intensity of connected devices" ,
326
326
validate : async ( runtime : IAgentRuntime , _message : Memory ) => {
327
327
try {
328
- await validateButtplugConfig ( runtime ) ;
328
+ await validateIntifaceConfig ( runtime ) ;
329
329
return true ;
330
330
} catch {
331
331
return false ;
@@ -338,11 +338,11 @@ const vibrateAction: Action = {
338
338
options : any ,
339
339
callback : HandlerCallback
340
340
) => {
341
- const service = runtime . getService < IButtplugService > (
342
- ServiceType . BUTTPLUG
341
+ const service = runtime . getService < IIntifaceService > (
342
+ ServiceType . INTIFACE
343
343
) ;
344
344
if ( ! service ) {
345
- throw new Error ( "Buttplug service not available" ) ;
345
+ throw new Error ( "Intiface service not available" ) ;
346
346
}
347
347
348
348
// Extract intensity and duration from message
@@ -435,7 +435,7 @@ const rotateAction: Action = {
435
435
description : "Control rotation intensity of connected devices" ,
436
436
validate : async ( runtime : IAgentRuntime , _message : Memory ) => {
437
437
try {
438
- await validateButtplugConfig ( runtime ) ;
438
+ await validateIntifaceConfig ( runtime ) ;
439
439
return true ;
440
440
} catch {
441
441
return false ;
@@ -448,8 +448,8 @@ const rotateAction: Action = {
448
448
options : any ,
449
449
callback : HandlerCallback
450
450
) => {
451
- const service = runtime . getService < IButtplugService > (
452
- ServiceType . BUTTPLUG
451
+ const service = runtime . getService < IIntifaceService > (
452
+ ServiceType . INTIFACE
453
453
) ;
454
454
if ( ! service || ! service . rotate ) {
455
455
throw new Error ( "Rotation not supported" ) ;
@@ -493,7 +493,7 @@ const batteryAction: Action = {
493
493
description : "Check battery level of connected devices" ,
494
494
validate : async ( runtime : IAgentRuntime , _message : Memory ) => {
495
495
try {
496
- await validateButtplugConfig ( runtime ) ;
496
+ await validateIntifaceConfig ( runtime ) ;
497
497
return true ;
498
498
} catch {
499
499
return false ;
@@ -506,8 +506,8 @@ const batteryAction: Action = {
506
506
options : any ,
507
507
callback : HandlerCallback
508
508
) => {
509
- const service = runtime . getService < IButtplugService > (
510
- ServiceType . BUTTPLUG
509
+ const service = runtime . getService < IIntifaceService > (
510
+ ServiceType . INTIFACE
511
511
) ;
512
512
if ( ! service || ! service . getBatteryLevel ) {
513
513
throw new Error ( "Battery level check not supported" ) ;
@@ -573,13 +573,13 @@ interface VibrateEvent {
573
573
deviceId ?: number ;
574
574
}
575
575
576
- export const buttplugPlugin : Plugin = {
577
- name : "buttplug " ,
576
+ export const intifacePlugin : Plugin = {
577
+ name : "intiface " ,
578
578
description : "Controls intimate hardware devices" ,
579
579
actions : [ vibrateAction , rotateAction , batteryAction ] ,
580
580
evaluators : [ ] ,
581
581
providers : [ ] ,
582
- services : [ new ButtplugService ( ) ] ,
582
+ services : [ new IntifaceService ( ) ] ,
583
583
} ;
584
584
585
- export default buttplugPlugin ;
585
+ export default intifacePlugin ;
0 commit comments