Jump to content

New Modview


Recommended Posts

We have the original ModView code :) I was in the middle of making it cross platform but it got put to the side. If there's demand for it, I can go back and try to finish it off and adding improvements. I was in the middle of wiring up the UI to the old code so all the functionality is still there, but needs to be made accessible again to the user.

 

Link, Mandalorian, Bek and 12 others like this
Link to comment

Would be nice to add proper Shader support and rend2 (normal maps). Also, IIRC... ModView supports playing supporting sounds for a character using the animevents.cfg file.

 

If we add facial wrinkle (normal) maps (for mo-better facial expressions) then it would be nice to add support for a "face_event.cfg" (similar to animevent.cfg but it tells engine to use an animated normal map in sync with a facial expression animation).

Link to comment

I'm sure most of us would love to have an updated modview to cater for those areas mentioned above. Having visible shaders, better alpha previews and being able to view JK2 models without changing the _humanoid files to the JK2 ones would be great.

Asgarath83 likes this
Link to comment

I'm sure most of us would love to have an updated modview to cater for those areas mentioned above. Having visible shaders, better alpha previews and being able to view JK2 models without changing the _humanoid files to the JK2 ones would be great.

 

It's hard when they are named the exact same. Best thing you could hope for is Modview to do what the game does for JK2 models - convert them over to the JKA _humanoid via a conversion table. You won't be able to see any JK2 animations, but at least then the JK2 model will load on the JKA _humanoid.

Asgarath83 likes this
Link to comment

Normal maps aren't even fully implemented in the actual game so why worry about the viewer?

 

As far as other shaders we all know what the basic ones look like and I know how to set up realtime shaders in Softimage to mimic what they'll look like in JA.

 

Implementing rend2 is definitely more important.

Link to comment

Seems like I was a lot closer to finishing my port of ModView that I thought I was :D I'm almost done making all the functionality available again, and taken out some stuff which I thought was useless. I can always add stuff back in if people did use it.

Circa likes this
Link to comment

Seems like I was a lot closer to finishing my port of ModView that I thought I was :D I'm almost done making all the functionality available again, and taken out some stuff which I thought was useless. I can always add stuff back in if people did use it.

An actual Mac version would be lovely. I'm tired of using Wine. :P

Link to comment

Seems like I was a lot closer to finishing my port of ModView that I thought I was :D I'm almost done making all the functionality available again, and taken out some stuff which I thought was useless. I can always add stuff back in if people did use it.

What functionality did you remove?

Link to comment

What functionality did you remove?

 

  • Viewing SoF2/JKA bot files
  • Always on top option
  • Copy/Find options under Edit menu
  • Changing Global XYZ scales
  • Viewing alpha blend (this is always enabled now)
  • Viewing texture filtering (always enabled)
  • Show origin lines
  • Show tri/vertex indexes (might consider adding this back in. I used this not too long ago)
  • Show all polys double-sided (always disabled now - only makes debugging harder)
  • Show unshadowable surfaces (not sure what this even did)
  • "Stu's test function"
  • View OpenGL driver info
Link to comment

I like the show origin axes... show unshadowable surfaces-- does that show/highlight objects that have > 500 verts ( not reactive to dynamic lighting?)

I'll add the show origin axes back in :) The main reason I'm removing stuff is to try and streamline ModView. I planned to redo the GUI a bit to be more intuitive.

 

And yeah, you're right. The unshadowable surfaces thing is supposed to show objects that have more than 500 verts. I never even knew that limitation existed.

Link to comment

I'll add the show origin axes back in :) The main reason I'm removing stuff is to try and streamline ModView. I planned to redo the GUI a bit to be more intuitive.

 

And yeah, you're right. The unshadowable surfaces thing is supposed to show objects that have more than 500 verts. I never even knew that limitation existed.

Can we up that vert limit? Maybe 1000? So that it's same value as 1000 verts max per object?

Link to comment

We could but then it wouldn't match up with JKA. I want to keep ModView working with vanilla JAMP as well.

 

EDIT: Just had a quick look in the source code - the limit is for stencil shadows (cg_shadow 2) which I don't think many people use anyway...

Link to comment

What are stencil shadows?

 

Edit:

 

In its original incarnation, a stencil buffer was a one-bit-per-pixel (i.e. black or white, but no grays) framebuffer. You could render to it whatever you wanted like any other framebuffer. Then, later, you could use the contents of that buffer to "stencil" or mask out when drawing to your regular buffer.An example: Let's say you're making a driving game. You want to have a little rear-view mirror onscreen that shows you what's behind the car. You'll need to render a view pointing behind the car, but you only want to render that within the little rounded rectangle of the rear-view mirror. The typical solution is:

 

Render the rounded rectangle shape to the stencil buffer.Enable stencilling.Render the backwards pointing view onto the regular buffer.The stencil will then mask it out so that you only draw into the shape of the mirror.Now that render pipelines are much more flexible and programmable, stencil buffers are used as just a generic 1-bit framebuffer that you can do whatever you want with. Shadows are a common use case.

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...