Jump to content



Photo
- - - - -

Wild Card (Williams 1977)[Visual Pinball X]


  • Please log in to reply
5 replies to this topic

#1 loserman76

loserman76

    Cannot resist the build..

  • VIP
  • 667 posts

  • Flag: United States of America

  • Favorite Pinball: Pinbot, High Speed and just about any Gottlieb EM from 1970-1979



Posted 06 November 2020 - 11:29 PM

Posted Image


File Name: Wild Card (Williams 1977)

File Submitter: loserman76

File Submitted: 06 Nov 2020

File Category: VPX Recreations

Author(s): Loserman76
PBecker
Itchigo
Manufacturer: Williams
Year: 1977
Permission to MOD?: Yes, with approval


conversion of PBecker's VP9x table to VPX
 
 
Thanks to PBecker and Itchigo for the VP9x version.
 
 
ZIP includes a wheel and B2S
 
MOD only by permission of ALL parties involved. And for God's sake, don't include it as part of a commercial cab.


Click here to download this file



#2 STAT

STAT

    Pinball and Arcade Freak

  • VIP
  • 4,981 posts
  • Location:Wels - Austria

  • Flag: Austria

  • Favorite Pinball: Twilight Zone

Posted 07 November 2020 - 09:44 PM

Oh well LM, you make me crazy - and happy of Course ;)

Now (tomorrow) i come back to my Cab since some Weeks … and i have much to do with your Diamonds here again :tup: … thanks for all Man !


Edited by STAT, 07 November 2020 - 09:45 PM.


#3 Pmax65

Pmax65

    Enthusiast

  • Platinum Supporter
  • 135 posts
  • Location:Romentino - Italy

  • Flag: Italy

  • Favorite Pinball: Addams Family

Posted 08 November 2020 - 11:10 AM

Hi Loserman76,

first of all, thank you for your EM gorgeous tables.

 

I looked at the codes of your tables and I see an issue with the ninuzzu's algorithm which creates the ball shadows.

That is: a sphere (the ball) shadow impinging on a plane (the table surface) creates always an ellipse, not a circle as per the current algorithm (except when the light shines exactly above the ball of course), but I agree that this is not a real issue since during the game the approximation could be well tolerated.

In your EM tables where the table surface is more clean from picture compared to the latest electronic pinballs, this issue is more evident, especially when the ball moves at the sides of the table, the shadow detaches from the ball looking as the ball was floating in the air, instead of rolling on the table surface.

Since the case of a so tilted shadow is unrealistic by itself (the light source should came from very low over the table), I suggest you to reduce the shadow inclination to one third of the current, so that the shadow remains attached to the ball and the circular footprint on the table is more approximable to a circle.

 

That is:

'*****************************************
'	ninuzzu's	BALL SHADOW
'*****************************************
Dim BallShadow
BallShadow = Array (BallShadow1,BallShadow2,BallShadow3,BallShadow4,BallShadow5)

Sub BallShadowUpdate_timer()
    Dim BOT, b
    BOT = GetBalls
    ' hide shadow of deleted balls
    If UBound(BOT)<(tnob-1) Then
        For b = (UBound(BOT) + 1) to (tnob-1)
            BallShadow(b).visible = 0
        Next
    End If
    ' exit the Sub if no balls on the table
    If UBound(BOT) = -1 Then Exit Sub
    ' render the shadow for each ball
    For b = 0 to UBound(BOT)
        If BOT(b).X < Table1.Width/2 Then
            BallShadow(b).X = ((BOT(b).X) - (Ballsize/6) + ((BOT(b).X - (Table1.Width/2))/21)) + 6
' -----------------------------------------------------------------------------------------^        THIS WAS 7
        Else
            BallShadow(b).X = ((BOT(b).X) + (Ballsize/6) + ((BOT(b).X - (Table1.Width/2))/21)) - 6
' -----------------------------------------------------------------------------------------^        THIS WAS 7
End If
        ballShadow(b).Y = BOT(b).Y + 4
' -----------------------------------^   THIS WAS 12
        If BOT(b).Z > 20 Then
            BallShadow(b).visible = 1
        Else
            BallShadow(b).visible = 0
        End If
    Next
End Sub

The result is much more realistic.

 

Have a great day.

 

Massimo


Everywhere a ball rolls, there's fun!


#4 bolt

bolt

    VPF Veteran

  • VIP
  • 5,158 posts
  • Location:Kiel / Schleswig Holstein

  • Flag: Germany

  • Favorite Pinball: JP's Deadpool, Harlem Globetrotters, Spiderman and much more

Posted 08 November 2020 - 06:50 PM

Thanks for all the tables loserman.


Posted Image

#5 bha19

bha19

    Pinball Fan

  • Platinum Supporter
  • 1,240 posts
  • Location:South Jersey

  • Flag: United States of America

  • Favorite Pinball: Theatre Of Magic

Posted 10 November 2020 - 12:39 AM

Thanks for all the great tables.


Edited by bha19, 10 November 2020 - 12:41 AM.


#6 Lroy

Lroy

    Neophyte

  • Members
  • Pip
  • 1 posts

  • Flag: United Kingdom

  • Favorite Pinball: Attack From Mars

Posted 27 September 2022 - 06:02 PM

Thank you to the original creators and the person(s) responsible for the VPX version of this classic Williams 'card-theme' pin. Is the above mentioned ball shadow script amendment incorporated into the current table download or something we manually must do ourselves? Very new to all this, so a little unclear on altering scripts.