Quote: "force you to see the cutscenes"
Not possible with the stock version, as it's hardcoded to interrupt the video when the escape key, space key is pressed, or the mouse is clicked.
But I believe that there was a mod that was capable to deactivate that using an action, iirc.
If you have DBP, DarkLights and DarkAI you could compile FPSC on your own and deactivate that behaviour as well:
1) Search for "while animation playing(lastvideoplayed)=1"
2) Comment the following lines out:
if control_escapekey()=1 then exit
if spacekey()=1 then exit
if control_mouseclick()<>0 then exit
And this one:
while control_escapekey()=1 or spacekey()=1 or control_mouseclick()<>0 : sync : endwhile
3) Compile the source
4) Replace your FPSC-Game.exe with the one you've compiled
-Doomster