can we make p3d files pass options to panda3d runtime?

My launches on windows currently is a bat file that does this:

"C:\Program Files (x86)\Panda3D\panda3dw.exe" -t splash_img=http://katana.aff2aw.com/d/img/download.png -f aff2aw.p3d

I mainly need to set the splash screen and “-f” the update option. Could this be some how done through the flags in aff2aw.p3d ?

My aff2aw.p3d is just a shell:

class aff2aw(p3d):
    """ empty holder p3d that should download all other packadges """
    config(    
        display_name = "AFF:Second Anterean War",
        platform_specific = False)
        
    require('code')
    require('data')
    mainModule('c')

I am looking for some thing like this:

class aff2aw(p3d):
    """ empty holder p3d that should download all other packadges """
    config(    
        display_name = "AFF:Second Anterean War",
        platform_specific = False)
        
    require('code')
    require('data')
    mainModule('c')

    addOption("-f")
    addOption("-t plash_img=http://katana.aff2aw.com/d/img/download.png")

Thanks!

EDIT:
Maybe combine this with the: panda3d.org/manual/index.php/P … g_settings

As that manual page states, it’s already possible:

config(splash_img="http://katana.aff2aw.com/d/img/download.png")

As for the -f flag, it’s not possible to set it in the p3d I think, because it just sets the verify_contents flag which is specific to the standalone runtime.