William Bettridge-Radford
William Bettridge-Radford
hotkeys are defined in `utest.rc` https://github.com/foone/3DMMForever/blob/79b301091175459dd39ec53bbb8a711248e969c6/src/studio/utest.rc#L58-L79
Browsers and Easels are implimented in Chunky Script. This could prove a tad complicated. We might need to create a new event that we can add a handler for in...
I'm not sure how to find which Browser to dispatch the message to. If I hardcode it to just one `kidCameraGlass` it works. ```cpp /*************************************************************************** Escape Key ***************************************************************************/ bool Studio::FCmdEscapeKey(PCMD...
The same works for Easels. It feels like a bit of a bodge, but we could iterate over the handler id's. And, if it has a graphic object, post the...
One edge case I've seen noted in the Chunky scripts is the Sound Recorder. You've got an Easel open over a Browser.
Do you mean like this? ```cpp vpcex->EnqueueCid(cidClicked, pvNil, pvNil, 0,0,0,0); vpcex->EnqueueCid(cidBrowserCancel, pvNil,pvNil, kidBrowserCancel, 0,0,0); ``` That didn't work for me. I assumed it was because I had to pass the...
There's a struct called BDS for Background Default Sound https://github.com/foone/3DMMForever/blob/79b301091175459dd39ec53bbb8a711248e969c6/inc/bkgd.h#L84-L91 Maybe we can edit the background file `BKGDS.3cn`? If I edit the `BDS` quad `ID=11` and set the `bds.tagSnd.sid` field...
adjustable fps would also be fun https://github.com/foone/3DMMForever/blob/79b301091175459dd39ec53bbb8a711248e969c6/inc/socdef.h#L28 Why should this be hardcoded?
Here's where it checks for multiple copies https://github.com/foone/3DMMForever/blob/79b301091175459dd39ec53bbb8a711248e969c6/src/studio/utest.cpp#L177-L183
MS Home Logo is initilised here: https://github.com/foone/3DMMForever/blob/79b301091175459dd39ec53bbb8a711248e969c6/src/studio/utest.cpp#L289-L295 https://github.com/foone/3DMMForever/blob/79b301091175459dd39ec53bbb8a711248e969c6/src/studio/utest.cpp#L289-L295 Splash Screen and Sound are here: https://github.com/foone/3DMMForever/blob/79b301091175459dd39ec53bbb8a711248e969c6/src/studio/utest.cpp#L289-L295 https://github.com/foone/3DMMForever/blob/79b301091175459dd39ec53bbb8a711248e969c6/src/studio/utest.cpp#L364-L366