Author Topic: Warning!!! Disable bitmap paging!  (Read 26341 times)

2013-09-21, 22:26:29

Polymax

  • Active Users
  • **
  • Posts: 830
  • CG Generalist
    • View Profile
    • maxkagirov.com
This must be uncheck, otherwise you will receive a slowdown render to 3-4 times! Need to restart 3dsMax or save and reopen the scene after uncheck!
« Last Edit: 2015-02-10, 17:03:43 by Polymax »
Corona - the best rendering solution!

2013-09-22, 10:04:56
Reply #1

maru

  • Corona Team
  • Active Users
  • ****
  • Posts: 12711
  • Marcin
    • View Profile
Interesting, I never knew such window existed. :) This might explain a lot!
Marcin Miodek | chaos-corona.com
3D Support Team Lead - Corona | contact us

2013-09-22, 10:33:37
Reply #2

Ludvik Koutny

  • VIP
  • Active Users
  • ***
  • Posts: 2557
  • Just another user
    • View Profile
    • My Portfolio
Yes, please everyone check for bitmap paging. You should always have it disabled.

2013-09-22, 11:05:02
Reply #3

lacilaci

  • Active Users
  • **
  • Posts: 749
    • View Profile
Somehow I thought this bitmap paging applies only to mental ray or scanline, how come it affects corona aswell? :D

2013-09-22, 12:58:57
Reply #4

Ondra

  • Administrator
  • Active Users
  • *****
  • Posts: 9048
  • Turning coffee to features since 2009
    • View Profile
Somehow I thought this bitmap paging applies only to mental ray or scanline, how come it affects corona aswell? :D
because all CPU renderers use the same texmap interface of 3dsmax. Texmaps are evaluated in 3dsmax, not in renderer.
Rendering is magic.How to get minidumps for crashed/frozen 3ds Max | Sorry for short replies, brief responses = more time to develop Corona ;)

2013-09-22, 13:10:50
Reply #5

Polymax

  • Active Users
  • **
  • Posts: 830
  • CG Generalist
    • View Profile
    • maxkagirov.com
This option (Page tex) is enabled globally by 3dsmax scene and 3ds max does not warn about it.
Ie if you open another scene in which this parameter is on, then you will remain constantly active, even after rebooting 3dsmax.
I think this is a BIG BUG of the 3dsMax.

Return unto me several people with the problem of very long render simple scenes, and after 4 hours of searching I managed to find the cause.
Corona - the best rendering solution!

2013-09-24, 18:42:40
Reply #6

hglr123

  • Active Users
  • **
  • Posts: 113
    • View Profile
Just create maxstart.max file and you will be fine. :)

2015-01-16, 23:29:28
Reply #7

3dwannab

  • Active Users
  • **
  • Posts: 362
    • View Profile
Only seeing this now, cheers Pmax :).

In maxscript. Type this into listener or you can place this in a file with .ms extention (attached) or better yet place it in your directory - bold text differs: C:\Users\user\AppData\Local\Autodesk\3dsMax\2014 - 64bit\ENU\scripts\startup

This will run on every existing file opened from here on in.

Code inside .ms file attached.
Code: [Select]
if IBitmapPager.enabled == true do IBitmapPager.enabled = false

2015-01-16, 23:35:29
Reply #8

racoonart

  • Active Users
  • **
  • Posts: 1446
    • View Profile
    • racoon-artworks
Don't forget that you have to save and reopen the scene, otherwise this ms command won't have any effect.
Any sufficiently advanced bug is indistinguishable from a feature.

2015-01-16, 23:44:11
Reply #9

3dwannab

  • Active Users
  • **
  • Posts: 362
    • View Profile
Sorry, missed that in the maxscript help. http://bit.ly/1E8dzQT

Quote
This value does not take effect until the scene is reloaded!  The value can be modified superficially at any time. The value is written to the file upon file save. However, disk paging never becomes enabled or disabled except when a scene is loaded, so changes to the value do not take effect unless the scene is saved and then reloaded!

2015-01-17, 03:33:00
Reply #10

3dwannab

  • Active Users
  • **
  • Posts: 362
    • View Profile
Don't forget that you have to save and reopen the scene, otherwise this ms command won't have any effect.
I've been toying around with some maxscript and I've done up this code.

Code: [Select]
         on chk_ibitmappager changed state do
        if state then
            (
                IBitmapPager.enabled = true
                chk_ibitmappager.text = "!"
                chk_ibitmappager.state = on               
                if querybox "BitmapPager is enabled !\n\nThis script will save and reload the file for you, do you want to do this now ?\n\n\nThis enabled will slow down render times !" title:"Save and Reopen file?"   
                then
                    (
                        if maxFilename == "" then getSaveFileName() else
                        file = (maxFilePath + maxFilename)
                            if file == undefined then messagebox "Output file not set, try again !" title:"RegionRender V2.0 by 3dwannab (◣_◢)"  beep:true
                                else
                                (
                                --saveNodes #() file quiet:on                                   
                                checkForSave()
                                saveMaxFile file quiet:on
                                loadMaxFile file quiet:on   
                                )
                    )
                    else
                    (
                    -- nada
                    )
            )
        else
            (
            IBitmapPager.enabled = false
            chk_ibitmappager.text = "☻"
            chk_ibitmappager.state = off
                if querybox "BitmapPager is disabled !\n\nThis script will save and reload the file for you, do you want to do this now ?\n\n\nYour render times should x3 to x4 times faster now !" title:"Save and Reopen file?"   
                then
                    (
                        if maxFilename == "" then getSaveFileName() else
                        file = (maxFilePath + maxFilename)
                            if file == undefined then messagebox "Output file not set, try again !" title:"RegionRender V2.0 by 3dwannab (◣_◢)"  beep:true
                                else
                                (
                                --saveNodes #() file quiet:on
                                checkForSave()
                                saveMaxFile file quiet:on
                                loadMaxFile file quiet:on   
                                )
                    )
                    else
                    (
                    -- nada
                    )
            )

The above can be mapped to a button called 'chk_ibitmappager'. I've a script out called RegionRender and I'll be putting this in it. If you find this useful for your converter script Deadclown by all means go ahead and use the code.

There's only mainly 4 important lines in here anyway:
 
Code: [Select]
--saveNodes #() file quiet:on
                                checkForSave()
                                saveMaxFile file quiet:on
                                loadMaxFile file quiet:on 

I'm not sure if the saveNodes function is required but I read somewhere that it was (I've disabled it here). But this bit of code will load the max file as silently as possible without any need to do anything in one click. (Well two)
« Last Edit: 2015-01-17, 03:39:57 by 3dwannab »

2015-01-17, 12:25:36
Reply #11

racoonart

  • Active Users
  • **
  • Posts: 1446
    • View Profile
    • racoon-artworks
"saveNodes" is equal to the save selected function in max, you just save the selected objects / an array of nodes as a new max file.

I thought about implementing some "typical problems" checks, but I'm not sure yet how or if I'm going to do that.
Any sufficiently advanced bug is indistinguishable from a feature.

2015-01-17, 13:20:24
Reply #12

3dwannab

  • Active Users
  • **
  • Posts: 362
    • View Profile
Thanks, what typical problem checks should I look out for.