|
|
|
export type ProjectionMode = 'cartesian' | 'spherical' |
|
|
|
export type MouseEventType = "hover" | "click" |
|
|
|
export type MouseEventHandler = (type: MouseEventType, x: number, y: number) => Promise<void> |
|
|
|
export type CacheMode = "use" | "renew" | "ignore" |
|
|
|
export interface RenderRequest { |
|
prompt: string |
|
|
|
|
|
|
|
|
|
|
|
segmentation: 'disabled' | 'firstframe' | 'allframes' |
|
|
|
|
|
|
|
actionnables: string[] |
|
|
|
|
|
|
|
|
|
|
|
|
|
nbFrames: number |
|
|
|
nbSteps: number |
|
|
|
seed: number |
|
|
|
width: number |
|
height: number |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
upscalingFactor: number |
|
|
|
projection: ProjectionMode |
|
|
|
cache: CacheMode |
|
|
|
wait: boolean |
|
|
|
analyze: boolean |
|
} |
|
|
|
export interface ImageSegment { |
|
id: number |
|
box: number[] |
|
color: number[] |
|
label: string |
|
score: number |
|
} |
|
|
|
export type RenderedSceneStatus = |
|
| "pending" |
|
| "completed" |
|
| "error" |
|
|
|
export interface RenderedScene { |
|
renderId: string |
|
status: RenderedSceneStatus |
|
assetUrl: string |
|
alt: string |
|
error: string |
|
maskUrl: string |
|
segments: ImageSegment[] |
|
} |
|
|
|
export interface ImageAnalysisRequest { |
|
image: string |
|
prompt: string |
|
} |
|
|
|
export interface ImageAnalysisResponse { |
|
result: string |
|
error?: string |
|
} |
|
|
|
export type RenderingEngine = |
|
| "VIDEOCHAIN" |
|
| "OPENAI" |
|
| "REPLICATE" |
|
|
|
export type PostVisibility = |
|
| "featured" |
|
| "trending" |
|
| "normal" |
|
|
|
export type Post = { |
|
postId: string |
|
appId: string |
|
prompt: string |
|
model: string |
|
previewUrl: string |
|
assetUrl: string |
|
createdAt: string |
|
visibility: PostVisibility |
|
upvotes: number |
|
downvotes: number |
|
} |
|
|
|
export type CreatePostResponse = { |
|
success?: boolean |
|
error?: string |
|
post: Post |
|
} |
|
|
|
export type GetAppPostsResponse = { |
|
success?: boolean |
|
error?: string |
|
posts: Post[] |
|
} |
|
|
|
export type GetAppPostResponse = { |
|
success?: boolean |
|
error?: string |
|
post: Post |
|
} |
|
|
|
export const eyes = ["normal", "happy", "sleepy", "mischief"] |
|
export const mouths = ["smile", "open", "surprise", "unhappy"] |
|
|
|
export type Avatar = { |
|
eye: "normal" | "happy" | "sleepy" | "mischief" |
|
mouth: "smile" | "open" | "surprise" | "unhappy" |
|
colors: string[] |
|
} |
|
|
|
export const colors: GameColor[] = [ |
|
"stone", |
|
"red", |
|
"orange", |
|
"amber", |
|
"yellow", |
|
"lime", |
|
"green", |
|
"emerald", |
|
"teal", |
|
"cyan", |
|
"sky", |
|
"blue", |
|
"indigo", |
|
"violet", |
|
"purple", |
|
"fuchsia", |
|
"pink", |
|
"rose" |
|
] |
|
export type GameColor = |
|
| "stone" |
|
| "red" |
|
| "orange" |
|
| "amber" |
|
| "yellow" |
|
| "lime" |
|
| "green" |
|
| "emerald" |
|
| "teal" |
|
| "cyan" |
|
| "sky" |
|
| "blue" |
|
| "indigo" |
|
| "violet" |
|
| "purple" |
|
| "fuchsia" |
|
| "pink" |
|
| "rose" |
|
|
|
|
|
export const playerColorsAlt: Record<GameColor, string> = { |
|
stone: "text-stone-700", |
|
red: "text-red-700", |
|
orange: "text-orange-700", |
|
amber: "text-amber-700", |
|
yellow: "text-yellow-700", |
|
lime: "text-lime-700", |
|
green: "text-green-700", |
|
emerald: "text-emerald-700", |
|
teal: "text-teal-700", |
|
cyan: "text-cyan-700", |
|
sky: "text-sky-700", |
|
blue: "text-blue-700", |
|
indigo: "text-indigo-700", |
|
violet: "text-violet-700", |
|
purple: "text-purple-700", |
|
fuchsia: "text-fuchsia-700", |
|
pink: "text-pink-700", |
|
rose: "text-rose-700", |
|
} |
|
|
|
|
|
export const playerColors: Record<GameColor, string> = { |
|
stone: "text-stone-800", |
|
red: "text-red-800", |
|
orange: "text-orange-800", |
|
amber: "text-amber-800", |
|
yellow: "text-yellow-800", |
|
lime: "text-lime-800", |
|
green: "text-green-800", |
|
emerald: "text-emerald-800", |
|
teal: "text-teal-800", |
|
cyan: "text-cyan-800", |
|
sky: "text-sky-800", |
|
blue: "text-blue-800", |
|
indigo: "text-indigo-800", |
|
violet: "text-violet-800", |
|
purple: "text-purple-800", |
|
fuchsia: "text-fuchsia-800", |
|
pink: "text-pink-800", |
|
rose: "text-rose-800", |
|
} |
|
|
|
export type Player = { |
|
id: string |
|
name: string |
|
color: GameColor |
|
avatar: Avatar |
|
score: number |
|
} |
|
|
|
export type Team = { |
|
id: number |
|
name: string |
|
color: GameColor |
|
score: number |
|
players: string[] |
|
} |
|
|
|
|
|
export type Challenge = { |
|
id: string |
|
fromPlayer: string |
|
toPlayer: string |
|
assetUrl: string |
|
prompt: string |
|
solved: boolean |
|
} |
|
|
|
export type PartyStatus = |
|
| "waiting" |
|
| "running" |
|
| "ended" |
|
|
|
export type Party = { |
|
partyId: string |
|
durationInMs: number |
|
startedAt: string |
|
players: Player[] |
|
status: PartyStatus |
|
|
|
|
|
|
|
|
|
challenges: Challenge[] |
|
} |
|
|
|
export type CurrentPanel = |
|
| "join" |
|
| "play" |
|
| "results" |
|
|
|
|
|
|
|
export type HotshotImageInferenceSize = |
|
| '320x768' |
|
| '384x672' |
|
| '416x608' |
|
| '512x512' |
|
| '608x416' |
|
| '672x384' |
|
| '768x320' |
|
| '1024x1024' |
|
| '1024x512' |
|
| '1024x576' |
|
| '576x1024' |
|
|
|
export type VideoOptions = { |
|
positivePrompt: string |
|
|
|
negativePrompt?: string |
|
|
|
size?: HotshotImageInferenceSize |
|
|
|
|
|
|
|
|
|
huggingFaceLora?: string |
|
|
|
replicateLora?: string |
|
|
|
triggerWord?: string |
|
|
|
nbFrames?: number |
|
duration?: number |
|
|
|
steps?: number |
|
} |
|
|
|
export type SDXLModel = { |
|
image: string |
|
title: string |
|
repo: string |
|
trigger_word: string |
|
weights: string |
|
is_compatible: boolean |
|
likes: number |
|
downloads: number |
|
} |