mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-08-01 16:43:37 +08:00
Importing an animated pet required a file that was exactly 1536x2288, laid out as 88 seamless cells, with the last two rows holding sixteen distinct gaze angles. No image model emits that. Whatever a user got back from Jimeng or ChatGPT was some fixed size like 1024x1536, so the path ended at "the animation atlas must be exactly 1536x2288 pixels" every time. The third card was worse: "AI-generate full animation" was hardcoded `disabled`, so the one entry point named after what people actually wanted to do was dead. The fix was already in the tree. `scripts/assemble-generated-pet-atlas.py` landed in the same commit as the four built-in pets, which is to say the built-ins were produced this way — it takes an action sheet at any size, slices it on an 8x9 grid, fits each cell to 192x208, mirrors the run row to make run-left, and reuses rows to reach eleven. That capability was never wired to anything a user could reach. `petAtlasNormalize.ts` reimplements it on a canvas in the renderer, so an author draws nine rows and the app derives the rest. Verified against the reference assembler by reversing dada-code's atlas into a nine-row sheet and re-normalizing it: every difference lands on semi-transparent antialiased edges (2314 pixels, max channel delta 14/255) and opaque regions are identical. That residue is canvas premultiplied-alpha round-tripping, not a slicing bug. Three contract details worth stating. Row frame counts are now derived from `PET_ANIMATION_DEFINITIONS` rather than typed out a fourth time; they come out equal to the assembler's `(6,8,8,4,5,8,6,6,6,8,8)`. A sheet already at 1536x2288 passes through byte-for-byte instead of being resliced, because resampling finished artwork buys nothing. And since the validator never inspects the alpha channel, a flattened white background used to import happily and render as a rectangle on the desktop — the renderer now rejects sheets whose atlas is under 5% transparent (the built-ins sit near 78%) with a message that names the actual problem. The copy stops describing the implementation. "Animate one image" and "Import professional animation atlas / exact 1536x2288 v2 PNG" become "use a picture you already have" and "I already have an action sheet"; the dead AI card becomes a three-step walkthrough carrying a copyable prompt, a labelled 8x9 reference grid that can be saved locally, and the checks that catch the common failures. Reference images are generated by a script rather than hand- placed, in both languages. All five locales move together. Caught while reviewing the real dialog in Electron: after finishing the walkthrough the form heading fell through to the atlas branch and announced "I already have an action sheet" to someone who had just been walked through drawing one. Covered by a test now. Not done: docs/images/desktop_ui/15_pet_create_methods.png still shows the old dialog and needs a fresh capture from a running app to match the styling of the shots around it.
805 lines
32 KiB
TypeScript
805 lines
32 KiB
TypeScript
import { app, BrowserWindow, clipboard, dialog, ipcMain, Menu, nativeImage, nativeTheme, Notification, screen, session, WebContentsView } from 'electron'
|
|
import { autoUpdater } from 'electron-updater'
|
|
import path from 'node:path'
|
|
import { ELECTRON_EVENT_CHANNELS, ELECTRON_INTERNAL_CHANNELS, ELECTRON_IPC_CHANNELS, type ElectronIpcChannel } from './ipc/channels'
|
|
import {
|
|
isElectronIpcChannel,
|
|
isElectronIpcChannelAllowedForPetWindow,
|
|
validateElectronIpcPayload,
|
|
} from './ipc/capabilities'
|
|
import { ElectronServerRuntime } from './services/serverRuntime'
|
|
import { appendHostDiagnostic, electronHostDiagnosticsFile, sanitizeHostDiagnostic } from './services/sidecarManager'
|
|
import { openDialog, saveDialog } from './services/dialogs'
|
|
import { openExternalUrl, openSystemPath, openSystemSettingsUrl } from './services/shell'
|
|
import {
|
|
notificationPermissionState,
|
|
requestNotificationPermission,
|
|
sendDesktopNotification,
|
|
} from './services/notifications'
|
|
import { installApplicationMenu } from './services/menu'
|
|
import { acquireSingleInstanceLock } from './services/singleInstance'
|
|
import { installTray, shouldInstallTray, type TrayController } from './services/tray'
|
|
import { ElectronUpdaterService, updaterSessionProxyConfig } from './services/updater'
|
|
import { createUpdateSmokeUpdaterFromEnv } from './services/updateSmoke'
|
|
import { ElectronTerminalService, type TerminalSpawnInput } from './services/terminal'
|
|
import { ElectronPreviewService, type PreviewBounds } from './services/preview'
|
|
import {
|
|
configureLocalServerRequestAuth,
|
|
configurePreviewSessionPermissions,
|
|
createPreviewSessionPartition,
|
|
type PreviewLocalAccess,
|
|
} from './services/previewSession'
|
|
import {
|
|
applyStartupPortableMode,
|
|
getAppMode,
|
|
setAppMode,
|
|
} from './services/appMode'
|
|
import { installMacOsChromiumKeychainPromptGuard } from './services/keychain'
|
|
import { applyWindowsAppUserModelId } from './services/appIdentity'
|
|
import { installMainWindowNavigationGuards, installPreviewNavigationGuards } from './services/navigationGuards'
|
|
import { installPreviewCleanupOnRendererNavigation } from './services/previewLifecycle'
|
|
import { logNotificationSmokeRendererAck, scheduleNotificationSmoke } from './services/notificationSmoke'
|
|
import { normalizeZoomFactor } from './services/zoom'
|
|
import {
|
|
applyAppliedAppearance,
|
|
isAppliedAppearance,
|
|
readAppearanceState,
|
|
startupWindowBackground,
|
|
type AppliedAppearance,
|
|
} from './services/nativeAppearance'
|
|
import { resolveRendererEntry } from './services/rendererEntry'
|
|
import { installRendererLifecycle } from './services/rendererLifecycle'
|
|
import { writeWindowSmokeSnapshot } from './services/windowSmoke'
|
|
import { loadAndRevealMainWindow } from './services/windowStartup'
|
|
import {
|
|
PetWindowController,
|
|
readPetWindowPosition,
|
|
writePetWindowPosition,
|
|
type PetWindowDragPayload,
|
|
} from './services/petWindow'
|
|
import {
|
|
createCustomPetCatalogLoader,
|
|
createCustomPetFromAtlas,
|
|
createCustomPetFromAtlasBytes,
|
|
createCustomPetFromImage,
|
|
ensureCustomPetsRoot,
|
|
getPetPackageErrorCode,
|
|
loadCustomPets,
|
|
readCustomPetSourceImage,
|
|
} from './services/pets'
|
|
import {
|
|
installWindowLifecycle,
|
|
readWindowState,
|
|
refreshWindowsDragHitTest,
|
|
restoreWindowMaximized,
|
|
saveWindowState,
|
|
showMainWindow,
|
|
windowChromeOptionsForPlatform,
|
|
windowOptionsFromState,
|
|
MIN_WINDOW_HEIGHT,
|
|
MIN_WINDOW_WIDTH,
|
|
} from './services/windows'
|
|
|
|
let mainWindow: BrowserWindow | null = null
|
|
let serverRuntime: ElectronServerRuntime | null = null
|
|
let updaterService: ElectronUpdaterService | null = null
|
|
let terminalService: ElectronTerminalService | null = null
|
|
let previewService: ElectronPreviewService | null = null
|
|
let petWindowController: PetWindowController | null = null
|
|
const traceWindows = new Map<string, BrowserWindow>()
|
|
let isQuitting = false
|
|
let trayController: TrayController | null = null
|
|
|
|
installMacOsChromiumKeychainPromptGuard(app)
|
|
|
|
function appRoot() {
|
|
return app.isPackaged ? app.getAppPath() : process.cwd()
|
|
}
|
|
|
|
function unpackedRoot() {
|
|
const root = appRoot()
|
|
return app.isPackaged ? root.replace(/\.asar$/, '.asar.unpacked') : root
|
|
}
|
|
|
|
function preloadPath() {
|
|
return path.join(appRoot(), 'electron-dist', 'preload.cjs')
|
|
}
|
|
|
|
function previewPreloadPath() {
|
|
return path.join(appRoot(), 'electron-dist', 'preview-preload.cjs')
|
|
}
|
|
|
|
function petPreloadPath() {
|
|
return path.join(appRoot(), 'electron-dist', 'pet-preload.cjs')
|
|
}
|
|
|
|
function previewAgentPath() {
|
|
return path.join(appRoot(), 'src-tauri', 'resources', 'preview-agent.js')
|
|
}
|
|
|
|
function rendererEntry() {
|
|
return resolveRendererEntry({
|
|
isPackaged: app.isPackaged,
|
|
appRoot: appRoot(),
|
|
env: process.env,
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Last appearance the renderer reported, kept in memory so the OS-flip watcher
|
|
* does not have to re-read the cache file (and race with its own write).
|
|
* Seeded from disk on first use because the renderer has not reported yet.
|
|
*/
|
|
let lastAppliedAppearance: AppliedAppearance | null = null
|
|
|
|
function currentAppearance(): AppliedAppearance | null {
|
|
if (!lastAppliedAppearance) lastAppliedAppearance = readAppearanceState(app)
|
|
return lastAppliedAppearance
|
|
}
|
|
|
|
/**
|
|
* The renderer keeps its theme in localStorage, which the main process cannot
|
|
* read, so the last applied appearance is replayed from cache to pick the
|
|
* pre-paint window background. First launch falls back to the OS setting.
|
|
*
|
|
* `shouldUseDarkColors` is the true OS setting here because `themeSource` is
|
|
* never pinned — see services/nativeAppearance.ts.
|
|
*/
|
|
function resolveStartupWindowBackground(): string {
|
|
return startupWindowBackground(currentAppearance(), nativeTheme.shouldUseDarkColors)
|
|
}
|
|
|
|
/**
|
|
* While the user follows the OS, repaint window backgrounds the moment the OS
|
|
* flips instead of waiting for the renderer to notice and report back — that
|
|
* round-trip is visible as a flash of the old color when resizing.
|
|
*/
|
|
function installSystemAppearanceWatch() {
|
|
nativeTheme.on('updated', () => {
|
|
const current = currentAppearance()
|
|
if (current && !current.followSystem) return
|
|
const background = startupWindowBackground(current, nativeTheme.shouldUseDarkColors)
|
|
for (const window of [mainWindow, ...traceWindows.values()]) {
|
|
if (!window || window.isDestroyed()) continue
|
|
window.setBackgroundColor(background)
|
|
}
|
|
})
|
|
}
|
|
|
|
async function loadRendererEntry(
|
|
window: BrowserWindow,
|
|
query?: Record<string, string>,
|
|
) {
|
|
const entry = rendererEntry()
|
|
if (/^https?:\/\//.test(entry)) {
|
|
const url = new URL(entry)
|
|
for (const [key, value] of Object.entries(query ?? {})) {
|
|
url.searchParams.set(key, value)
|
|
}
|
|
await window.loadURL(url.toString())
|
|
} else {
|
|
await window.loadFile(entry, query ? { query } : undefined)
|
|
}
|
|
}
|
|
|
|
async function openTraceWindow(sessionId: string) {
|
|
const existing = traceWindows.get(sessionId)
|
|
if (existing && !existing.isDestroyed()) {
|
|
showMainWindow(existing, app)
|
|
return
|
|
}
|
|
|
|
const traceWindow = new BrowserWindow({
|
|
width: 1180,
|
|
height: 780,
|
|
minWidth: 860,
|
|
minHeight: 560,
|
|
title: 'Trace',
|
|
autoHideMenuBar: true,
|
|
show: false,
|
|
backgroundColor: resolveStartupWindowBackground(),
|
|
webPreferences: {
|
|
preload: preloadPath(),
|
|
contextIsolation: true,
|
|
nodeIntegration: false,
|
|
sandbox: true,
|
|
},
|
|
})
|
|
traceWindows.set(sessionId, traceWindow)
|
|
traceWindow.on('closed', () => {
|
|
traceWindows.delete(sessionId)
|
|
})
|
|
installMainWindowNavigationGuards(traceWindow.webContents, { openExternal: openExternalUrl })
|
|
await loadRendererEntry(traceWindow, {
|
|
traceWindow: '1',
|
|
traceSessionId: sessionId,
|
|
})
|
|
showMainWindow(traceWindow, app)
|
|
}
|
|
|
|
function getServerRuntime() {
|
|
serverRuntime ??= new ElectronServerRuntime({
|
|
desktopRoot: unpackedRoot(),
|
|
appRoot: appRoot(),
|
|
h5DistDir: path.join(unpackedRoot(), 'dist'),
|
|
diagnosticsFile: electronHostDiagnosticsFile(process.env),
|
|
resolveSystemProxy: (url) => session.defaultSession.resolveProxy(url),
|
|
})
|
|
return serverRuntime
|
|
}
|
|
|
|
function resolveLocalServerAccess(): PreviewLocalAccess | null {
|
|
const runtime = getServerRuntime()
|
|
const serverUrl = runtime.getActiveServerUrl()
|
|
return serverUrl
|
|
? { serverUrl, token: runtime.getLocalAccessToken() }
|
|
: null
|
|
}
|
|
|
|
function resolvePetServerAccess(): PreviewLocalAccess | null {
|
|
const runtime = getServerRuntime()
|
|
const serverUrl = runtime.getActiveServerUrl()
|
|
return serverUrl
|
|
? { serverUrl, token: runtime.getPetAccessToken() }
|
|
: null
|
|
}
|
|
|
|
function getUpdaterService() {
|
|
const smokeUpdater = createUpdateSmokeUpdaterFromEnv(process.env)
|
|
updaterService ??= new ElectronUpdaterService(smokeUpdater ?? autoUpdater, {
|
|
async apply(proxy) {
|
|
// Update traffic runs on electron-updater's own session partition;
|
|
// configuring app/defaultSession proxies never reaches it.
|
|
await autoUpdater.netSession.setProxy(updaterSessionProxyConfig(proxy))
|
|
},
|
|
}, {
|
|
updateConfigPath: !smokeUpdater && app.isPackaged ? path.join(process.resourcesPath, 'app-update.yml') : undefined,
|
|
})
|
|
return updaterService
|
|
}
|
|
|
|
function nodePtyRuntimeCacheDir() {
|
|
if (!app.isPackaged || process.platform !== 'darwin') return undefined
|
|
return path.join(app.getPath('userData'), 'native', `node-pty-${process.platform}-${process.arch}-${app.getVersion()}`)
|
|
}
|
|
|
|
function getTerminalService() {
|
|
terminalService ??= new ElectronTerminalService({
|
|
app,
|
|
nodePtySourceDir: app.isPackaged ? path.join(unpackedRoot(), 'node_modules', 'node-pty') : undefined,
|
|
nodePtyCacheDir: nodePtyRuntimeCacheDir(),
|
|
})
|
|
return terminalService
|
|
}
|
|
|
|
function getPreviewService() {
|
|
previewService ??= new ElectronPreviewService({
|
|
previewScriptPath: previewAgentPath(),
|
|
resolveScaleFactor: parent => {
|
|
const bounds = parent.getBounds?.()
|
|
return bounds ? screen.getDisplayMatching(bounds).scaleFactor : 1
|
|
},
|
|
createView: () => {
|
|
const view = new WebContentsView({
|
|
webPreferences: {
|
|
preload: previewPreloadPath(),
|
|
partition: createPreviewSessionPartition(),
|
|
contextIsolation: true,
|
|
nodeIntegration: false,
|
|
sandbox: true,
|
|
},
|
|
})
|
|
configurePreviewSessionPermissions(view.webContents.session)
|
|
configureLocalServerRequestAuth(
|
|
view.webContents.session.webRequest,
|
|
resolveLocalServerAccess,
|
|
)
|
|
installPreviewNavigationGuards(view.webContents, { openExternal: openExternalUrl })
|
|
return view
|
|
},
|
|
})
|
|
return previewService
|
|
}
|
|
|
|
function getPetWindowController() {
|
|
petWindowController ??= new PetWindowController({
|
|
createWindow: options => new BrowserWindow(options),
|
|
getCursorScreenPoint: () => screen.getCursorScreenPoint(),
|
|
getCurrentWorkArea: () => screen.getDisplayNearestPoint(
|
|
screen.getCursorScreenPoint(),
|
|
).workArea,
|
|
getWorkAreaForPoint: point => screen.getDisplayNearestPoint(point).workArea,
|
|
preloadPath: petPreloadPath(),
|
|
platform: process.platform,
|
|
readPosition: () => readPetWindowPosition(process.env, app.getPath('home')),
|
|
writePosition: position => writePetWindowPosition(position, process.env, app.getPath('home')),
|
|
onCreated: (window) => {
|
|
configurePreviewSessionPermissions(window.webContents.session)
|
|
configureLocalServerRequestAuth(
|
|
window.webContents.session.webRequest,
|
|
resolvePetServerAccess,
|
|
)
|
|
installMainWindowNavigationGuards(window.webContents, { openExternal: openExternalUrl })
|
|
},
|
|
load: window => loadRendererEntry(window, { petWindow: '1' }),
|
|
})
|
|
return petWindowController
|
|
}
|
|
|
|
const loadCustomPetCatalog = createCustomPetCatalogLoader(() => loadCustomPets({
|
|
inspectImageSize: ({ data }) => nativeImage.createFromBuffer(data).getSize(),
|
|
}))
|
|
|
|
async function listCustomPets() {
|
|
const { pets, errors } = await loadCustomPetCatalog()
|
|
return { pets, errors }
|
|
}
|
|
|
|
function focusPetSession(sessionId: string) {
|
|
showMainWindow(mainWindow, app)
|
|
mainWindow?.webContents.send(ELECTRON_EVENT_CHANNELS.petNavigateSession, sessionId)
|
|
}
|
|
|
|
function currentWindow(event: Electron.IpcMainInvokeEvent) {
|
|
const window = BrowserWindow.fromWebContents(event.sender)
|
|
if (!window) throw new Error('No BrowserWindow for Electron IPC event')
|
|
return window
|
|
}
|
|
|
|
function registerHandler<T>(
|
|
channel: ElectronIpcChannel,
|
|
handler: (event: Electron.IpcMainInvokeEvent, payload: unknown) => T | Promise<T>,
|
|
) {
|
|
ipcMain.handle(channel, async (event, payload) => {
|
|
if (!isElectronIpcChannel(channel) || !validateElectronIpcPayload(channel, payload)) {
|
|
throw new Error(`Invalid Electron IPC payload for ${channel}`)
|
|
}
|
|
const senderWindow = BrowserWindow.fromWebContents(event.sender)
|
|
if (
|
|
petWindowController?.owns(senderWindow) &&
|
|
!isElectronIpcChannelAllowedForPetWindow(channel)
|
|
) {
|
|
throw new Error(`Electron IPC channel ${channel} is not available to the pet window`)
|
|
}
|
|
return handler(event, payload)
|
|
})
|
|
}
|
|
|
|
function unsupported(name: string): never {
|
|
throw new Error(`${name} is not implemented in the Electron host yet`)
|
|
}
|
|
|
|
function emitNotificationAction(payload: unknown) {
|
|
showMainWindow(mainWindow, app)
|
|
mainWindow?.webContents.send(ELECTRON_EVENT_CHANNELS.notificationAction, payload)
|
|
}
|
|
|
|
async function handleCommandInvoke(payload: unknown): Promise<unknown> {
|
|
const { command, args } = payload as { command: string, args?: Record<string, unknown> }
|
|
|
|
switch (command) {
|
|
case 'plugin:notification|is_permission_granted':
|
|
return notificationPermissionState(Notification) === 'granted'
|
|
case 'plugin:notification|request_permission':
|
|
case 'macos_request_notification_permission':
|
|
return requestNotificationPermission(Notification)
|
|
case 'macos_notification_permission_state':
|
|
return notificationPermissionState(Notification)
|
|
case 'macos_send_notification':
|
|
return sendDesktopNotification({
|
|
NotificationClass: Notification,
|
|
options: args,
|
|
onAction: emitNotificationAction,
|
|
})
|
|
case 'macos_open_notification_settings':
|
|
return openSystemSettingsUrl('x-apple.systempreferences:com.apple.preference.notifications')
|
|
case 'open_windows_notification_settings':
|
|
return openSystemSettingsUrl('ms-settings:notifications')
|
|
default:
|
|
return unsupported(`Electron command ${command}`)
|
|
}
|
|
}
|
|
|
|
function registerIpcHandlers() {
|
|
ipcMain.on(ELECTRON_INTERNAL_CHANNELS.previewMessageFromView, (event, raw) => {
|
|
void getPreviewService().sendMessageToRenderer(event.sender, raw, mainWindow?.webContents)
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.appGetVersion, () => app.getVersion())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.runtimeGetServerUrl, () => getServerRuntime().getServerUrl())
|
|
registerHandler(
|
|
ELECTRON_IPC_CHANNELS.runtimeGetLocalAccessToken,
|
|
() => getServerRuntime().getLocalAccessToken(),
|
|
)
|
|
registerHandler(
|
|
ELECTRON_IPC_CHANNELS.runtimeGetPetAccessToken,
|
|
() => getServerRuntime().getPetAccessToken(),
|
|
)
|
|
registerHandler(ELECTRON_IPC_CHANNELS.commandInvoke, (_event, payload) => handleCommandInvoke(payload))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.clipboardReadText, () => clipboard.readText())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.clipboardWriteText, (_event, payload) => clipboard.writeText(String(payload)))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.shellOpen, (_event, payload) => openExternalUrl(String(payload)))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.shellOpenPath, (_event, payload) => openSystemPath(String(payload)))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.traceOpenWindow, (_event, payload) => openTraceWindow(String(payload)))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsList, () => listCustomPets())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsCreateFromImage, async (event, payload) => {
|
|
const input = payload as {
|
|
slug: string
|
|
displayName: string
|
|
description: string
|
|
dialogTitle?: string
|
|
dialogFilterName?: string
|
|
}
|
|
const imagePath = await openDialog(currentWindow(event), {
|
|
title: input.dialogTitle || 'Choose a transparent pet image',
|
|
filters: [{ name: input.dialogFilterName || 'Pet image', extensions: ['png', 'webp'] }],
|
|
})
|
|
if (typeof imagePath !== 'string') return null
|
|
try {
|
|
const pet = await loadCustomPetCatalog.invalidateAfter(() =>
|
|
createCustomPetFromImage({
|
|
slug: input.slug,
|
|
displayName: input.displayName,
|
|
description: input.description,
|
|
imagePath,
|
|
}, {
|
|
inspectImageSize: ({ data }) => nativeImage.createFromBuffer(data).getSize(),
|
|
}))
|
|
return { id: pet.id }
|
|
} catch (error) {
|
|
return { errorCode: getPetPackageErrorCode(error) }
|
|
}
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsCreateFromAtlas, async (event, payload) => {
|
|
const input = payload as {
|
|
slug: string
|
|
displayName: string
|
|
description: string
|
|
dialogTitle?: string
|
|
dialogFilterName?: string
|
|
}
|
|
const atlasPath = await openDialog(currentWindow(event), {
|
|
title: input.dialogTitle || 'Choose a v2 pet animation atlas',
|
|
filters: [{ name: input.dialogFilterName || 'Pet animation atlas', extensions: ['png', 'webp'] }],
|
|
})
|
|
if (typeof atlasPath !== 'string') return null
|
|
try {
|
|
const pet = await loadCustomPetCatalog.invalidateAfter(() =>
|
|
createCustomPetFromAtlas({
|
|
slug: input.slug,
|
|
displayName: input.displayName,
|
|
description: input.description,
|
|
atlasPath,
|
|
}, {
|
|
inspectImageSize: ({ data }) => nativeImage.createFromBuffer(data).getSize(),
|
|
}))
|
|
return { id: pet.id }
|
|
} catch (error) {
|
|
return { errorCode: getPetPackageErrorCode(error) }
|
|
}
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsPickSourceSheet, async (event, payload) => {
|
|
const input = payload as { dialogTitle?: string, dialogFilterName?: string }
|
|
const imagePath = await openDialog(currentWindow(event), {
|
|
title: input.dialogTitle || 'Choose a pet action sheet',
|
|
filters: [{ name: input.dialogFilterName || 'Pet action sheet', extensions: ['png', 'webp'] }],
|
|
})
|
|
if (typeof imagePath !== 'string') return null
|
|
try {
|
|
const source = await readCustomPetSourceImage(imagePath)
|
|
// The renderer needs the pixels to assemble the atlas on a canvas; the path
|
|
// itself is deliberately never handed over.
|
|
return {
|
|
bytes: source.data,
|
|
mimeType: source.mimeType,
|
|
width: source.width,
|
|
height: source.height,
|
|
}
|
|
} catch (error) {
|
|
return { errorCode: getPetPackageErrorCode(error) }
|
|
}
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsCreateFromAtlasBytes, async (_event, payload) => {
|
|
const input = payload as {
|
|
slug: string
|
|
displayName: string
|
|
description: string
|
|
atlasData: Uint8Array
|
|
mimeType: 'image/png' | 'image/webp'
|
|
}
|
|
try {
|
|
const pet = await loadCustomPetCatalog.invalidateAfter(() =>
|
|
createCustomPetFromAtlasBytes({
|
|
slug: input.slug,
|
|
displayName: input.displayName,
|
|
description: input.description,
|
|
atlasData: input.atlasData,
|
|
mimeType: input.mimeType,
|
|
}, {
|
|
inspectImageSize: ({ data }) => nativeImage.createFromBuffer(data).getSize(),
|
|
}))
|
|
return { id: pet.id }
|
|
} catch (error) {
|
|
return { errorCode: getPetPackageErrorCode(error) }
|
|
}
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsOpenFolder, async () => {
|
|
const root = await ensureCustomPetsRoot()
|
|
await openSystemPath(root)
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsShow, async () => {
|
|
await getPetWindowController().show()
|
|
mainWindow?.webContents.send(ELECTRON_EVENT_CHANNELS.petVisibilityChanged, true)
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsHide, () => {
|
|
getPetWindowController().hide()
|
|
mainWindow?.webContents.send(ELECTRON_EVENT_CHANNELS.petVisibilityChanged, false)
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsShowContextMenu, (event, payload) => {
|
|
const { closeLabel } = payload as { closeLabel: string }
|
|
return getPetWindowController().showContextMenu(
|
|
currentWindow(event),
|
|
closeLabel.trim(),
|
|
Menu,
|
|
)
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsDragWindow, (event, payload) => {
|
|
getPetWindowController().dragWindow(
|
|
currentWindow(event),
|
|
payload as PetWindowDragPayload,
|
|
)
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsSetIgnoreMouseEvents, (event, payload) => {
|
|
getPetWindowController().setIgnoreMouseEvents(currentWindow(event), Boolean(payload))
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsSetInteractiveRegions, (event, payload) => {
|
|
getPetWindowController().setInteractiveRegions(
|
|
currentWindow(event),
|
|
payload as Electron.Rectangle[],
|
|
)
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsFocusMainWindow, (event) => {
|
|
if (!getPetWindowController().owns(currentWindow(event))) {
|
|
throw new Error('Pet window IPC sender does not own the companion window')
|
|
}
|
|
showMainWindow(mainWindow, app)
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.petsFocusSession, (_event, payload) =>
|
|
focusPetSession(String(payload)))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.dialogOpen, (event, payload) =>
|
|
openDialog(currentWindow(event), payload as Parameters<typeof openDialog>[1]))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.dialogSave, (event, payload) =>
|
|
saveDialog(currentWindow(event), payload as Parameters<typeof saveDialog>[1]))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.updateCheck, (_event, payload) =>
|
|
getUpdaterService().checkForUpdates(payload as Parameters<ElectronUpdaterService['checkForUpdates']>[0]))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.updateDownload, () => getUpdaterService().downloadUpdate(event => {
|
|
mainWindow?.webContents.send(ELECTRON_EVENT_CHANNELS.updateDownloadEvent, event)
|
|
}))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.updateInstall, () => getUpdaterService().stageDownloadedUpdate())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.updatePrepareInstall, () => getServerRuntime().stopAll())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.updateCancelInstall, () => getUpdaterService().cancelInstall())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.updateRelaunch, () => {
|
|
if (getUpdaterService().hasDownloadedUpdate()) {
|
|
isQuitting = true
|
|
getUpdaterService().quitAndInstallDownloadedUpdate()
|
|
return
|
|
}
|
|
app.relaunch()
|
|
app.quit()
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.notificationPermissionState, () => notificationPermissionState(Notification))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.notificationRequestPermission, () => requestNotificationPermission(Notification))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.notificationSend, (_event, payload) => sendDesktopNotification({
|
|
NotificationClass: Notification,
|
|
options: payload,
|
|
onAction: emitNotificationAction,
|
|
}))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.notificationActionAck, (_event, payload) =>
|
|
logNotificationSmokeRendererAck(process.env, payload))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.windowMinimize, event => currentWindow(event).minimize())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.windowToggleMaximize, event => {
|
|
const window = currentWindow(event)
|
|
if (window.isMaximized()) window.unmaximize()
|
|
else window.maximize()
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.windowClose, event => currentWindow(event).close())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.windowStartDragging, () => undefined)
|
|
registerHandler(ELECTRON_IPC_CHANNELS.windowRequestAttention, event => currentWindow(event).flashFrame(true))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.windowFocus, event => currentWindow(event).focus())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.windowIsMaximized, event => currentWindow(event).isMaximized())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.terminalSpawn, (event, payload) =>
|
|
getTerminalService().spawn((payload ?? {}) as TerminalSpawnInput, event.sender))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.terminalWrite, (event, payload) => {
|
|
const { sessionId, data } = payload as { sessionId: number, data: string }
|
|
return getTerminalService().write(sessionId, data, event.sender)
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.terminalResize, (event, payload) => {
|
|
const { sessionId, cols, rows } = payload as { sessionId: number, cols: number, rows: number }
|
|
return getTerminalService().resize(sessionId, cols, rows, event.sender)
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.terminalKill, (event, payload) => {
|
|
const { sessionId } = payload as { sessionId: number }
|
|
return getTerminalService().kill(sessionId, event.sender)
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.terminalGetBashPath, () => getTerminalService().getBashPath())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.terminalSetBashPath, (_event, payload) => getTerminalService().setBashPath(payload as string | null))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.previewOpen, (event, payload) => {
|
|
const { url, bounds } = payload as { url: string, bounds?: PreviewBounds }
|
|
return getPreviewService().open(currentWindow(event), url, bounds ?? { x: 0, y: 0, width: 0, height: 0 })
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.previewNavigate, (_event, payload) => getPreviewService().navigate(String(payload)))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.previewSetBounds, (_event, payload) => getPreviewService().setBounds(payload as PreviewBounds))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.previewSetVisible, (_event, payload) => getPreviewService().setVisible(Boolean(payload)))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.previewSetZoom, (_event, payload) => getPreviewService().setZoomFactor(payload))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.previewClose, () => getPreviewService().close())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.previewMessage, (event, payload) => getPreviewService().message(payload, event.sender))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.appModeGet, () => getAppMode(app))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.appModeSet, (_event, payload) => setAppMode(app, payload as Parameters<typeof setAppMode>[1]))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.appModePrepareRestart, () => getServerRuntime().stopAll(true))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.appModeRestart, () => {
|
|
isQuitting = true
|
|
app.relaunch()
|
|
app.quit()
|
|
})
|
|
registerHandler(ELECTRON_IPC_CHANNELS.adaptersRestartSidecar, () => getServerRuntime().restartAdaptersSidecars())
|
|
registerHandler(ELECTRON_IPC_CHANNELS.zoomSet, (event, payload) => currentWindow(event).webContents.setZoomFactor(normalizeZoomFactor(payload)))
|
|
registerHandler(ELECTRON_IPC_CHANNELS.appearanceSetApplied, (_event, payload) => {
|
|
if (!isAppliedAppearance(payload)) return
|
|
lastAppliedAppearance = payload
|
|
applyAppliedAppearance(payload, {
|
|
app,
|
|
// The pet window is deliberately transparent, so it stays out of this.
|
|
windows: () => [mainWindow, ...traceWindows.values()].filter((window): window is BrowserWindow => !!window),
|
|
})
|
|
})
|
|
}
|
|
|
|
async function createMainWindow() {
|
|
const restoredState = readWindowState(app, screen.getAllDisplays())
|
|
const bounds = windowOptionsFromState(restoredState)
|
|
mainWindow = new BrowserWindow({
|
|
...bounds,
|
|
minWidth: MIN_WINDOW_WIDTH,
|
|
minHeight: MIN_WINDOW_HEIGHT,
|
|
show: false,
|
|
// Painted before the renderer produces its first frame; without it a
|
|
// dark-theme user gets a white flash on every launch.
|
|
backgroundColor: resolveStartupWindowBackground(),
|
|
...windowChromeOptionsForPlatform(process.platform),
|
|
webPreferences: {
|
|
preload: preloadPath(),
|
|
contextIsolation: true,
|
|
nodeIntegration: false,
|
|
sandbox: true,
|
|
},
|
|
})
|
|
configureLocalServerRequestAuth(
|
|
mainWindow.webContents.session.webRequest,
|
|
resolveLocalServerAccess,
|
|
)
|
|
|
|
installMainWindowNavigationGuards(mainWindow.webContents, { openExternal: openExternalUrl })
|
|
installPreviewCleanupOnRendererNavigation(mainWindow.webContents, () => {
|
|
previewService?.close()
|
|
})
|
|
|
|
installWindowLifecycle({
|
|
app,
|
|
window: mainWindow,
|
|
shouldQuit: () => isQuitting,
|
|
})
|
|
|
|
const window = mainWindow
|
|
const diagnosticsFile = electronHostDiagnosticsFile(process.env)
|
|
const recordRendererDiagnostic = (detail: string) => {
|
|
const sanitized = sanitizeHostDiagnostic(detail)
|
|
appendHostDiagnostic(diagnosticsFile, `[renderer] ${sanitized}`)
|
|
return sanitized
|
|
}
|
|
|
|
window.on('resize', () => {
|
|
if (window.isDestroyed()) return
|
|
window.webContents.send(ELECTRON_EVENT_CHANNELS.windowResized)
|
|
})
|
|
installRendererLifecycle({
|
|
window,
|
|
isQuitting: () => isQuitting,
|
|
recordDiagnostic: recordRendererDiagnostic,
|
|
writeSnapshot: reason => writeWindowSmokeSnapshot(window, reason),
|
|
onRendererProcessGone: detail => {
|
|
console.error(`[desktop] Electron renderer process exited: ${detail}`)
|
|
},
|
|
onRecoveryExhausted: detail => {
|
|
console.error(`[desktop] Electron renderer recovery exhausted: ${detail}`)
|
|
dialog.showErrorBox(
|
|
'界面恢复失败 / Interface Recovery Failed',
|
|
`桌面界面意外退出或持续无响应,自动恢复未能解决问题。请重启应用;如果问题持续存在,请附上诊断日志反馈。\n\nThe desktop interface exited unexpectedly or remained unresponsive, and automatic recovery did not resolve it. Restart the app and include diagnostics when reporting the problem.\n\n${detail}`,
|
|
)
|
|
},
|
|
})
|
|
writeWindowSmokeSnapshot(mainWindow, 'after-create')
|
|
|
|
await loadAndRevealMainWindow({
|
|
load: () => loadRendererEntry(mainWindow!),
|
|
beforeReveal: () => restoreWindowMaximized(mainWindow!, restoredState),
|
|
reveal: () => showMainWindow(mainWindow, app),
|
|
onLoadFailure: (error) => {
|
|
const detail = sanitizeHostDiagnostic(error instanceof Error ? error.message : String(error))
|
|
console.error(`[desktop] failed to load Electron renderer: ${detail}`)
|
|
writeWindowSmokeSnapshot(mainWindow, 'renderer-load-failed')
|
|
dialog.showErrorBox(
|
|
'启动错误 / Startup Error',
|
|
`桌面界面加载失败,请重启应用。如果问题持续存在,请附上诊断日志反馈。\n\nThe desktop interface could not be loaded. Restart the app and include diagnostics when reporting the problem.\n\n${detail}`,
|
|
)
|
|
},
|
|
})
|
|
refreshWindowsDragHitTest(mainWindow, process.platform)
|
|
writeWindowSmokeSnapshot(mainWindow, 'after-final-show')
|
|
}
|
|
|
|
if (!acquireSingleInstanceLock(app, () => mainWindow)) {
|
|
process.exit(0)
|
|
}
|
|
|
|
registerIpcHandlers()
|
|
|
|
app.whenReady().then(async () => {
|
|
applyWindowsAppUserModelId(app)
|
|
applyStartupPortableMode(app)
|
|
installSystemAppearanceWatch()
|
|
screen.on('display-metrics-changed', (_event, _display, changedMetrics) => {
|
|
if (changedMetrics.includes('scaleFactor') || changedMetrics.includes('bounds')) {
|
|
previewService?.refreshBounds()
|
|
}
|
|
})
|
|
await getServerRuntime().startServer().catch(error => {
|
|
console.error('[desktop] failed to start Electron server sidecar', error)
|
|
})
|
|
await installApplicationMenu(app, () => mainWindow)
|
|
if (shouldInstallTray(process.platform)) {
|
|
trayController = await installTray({
|
|
app,
|
|
desktopRoot: appRoot(),
|
|
show: () => showMainWindow(mainWindow, app),
|
|
quit: () => {
|
|
isQuitting = true
|
|
app.quit()
|
|
},
|
|
}).catch(error => {
|
|
console.error('[desktop] failed to create Electron tray', error)
|
|
return null
|
|
})
|
|
}
|
|
await createMainWindow()
|
|
scheduleNotificationSmoke({
|
|
env: process.env,
|
|
NotificationClass: Notification,
|
|
onAction: emitNotificationAction,
|
|
})
|
|
|
|
app.on('activate', () => {
|
|
if (mainWindow) {
|
|
showMainWindow(mainWindow, app)
|
|
return
|
|
}
|
|
void createMainWindow()
|
|
})
|
|
})
|
|
|
|
app.on('window-all-closed', () => {
|
|
if (isQuitting && process.platform !== 'darwin') app.quit()
|
|
})
|
|
|
|
app.on('before-quit', () => {
|
|
isQuitting = true
|
|
if (mainWindow) saveWindowState(app, mainWindow)
|
|
trayController?.dispose()
|
|
trayController = null
|
|
terminalService?.killAll()
|
|
previewService?.close()
|
|
petWindowController?.dispose()
|
|
petWindowController = null
|
|
// Synchronous on quit so the Windows taskkill completes before the process
|
|
// exits, otherwise the fire-and-forget kill can leave orphaned sidecars.
|
|
getServerRuntime().stopAll(true)
|
|
})
|