Jump to content



Photo
* * * * - 6 votes

The VP 10.1 beta thread


  • Please log in to reply
868 replies to this topic

#801 toxie

toxie

    VPF Veteran

  • VP Dev Team
  • PipPipPipPipPipPip
  • 5,734 posts
  • Location:berlin, germany

  • Flag: Germany

  • Favorite Pinball: AFM

Posted 06 June 2016 - 07:16 PM

..and the VPM 2.7 beta builds are here: http://www.vpforums....=18#entry346485



#802 toxie

toxie

    VPF Veteran

  • VP Dev Team
  • PipPipPipPipPipPip
  • 5,734 posts
  • Location:berlin, germany

  • Flag: Germany

  • Favorite Pinball: AFM

Posted 06 June 2016 - 08:07 PM

and another example, similar to the other post:

Dim JackpotGoal,ComboGoal,SJetsGoal
JackpotGoal=False
ComboGoal=False
SJetsGoal=False

Sub DetectGoals(VPMNVRAM)
 Dim I,S
 For I = 0 To UBound(VPMNVRAM)
   ' check for game started, reset goals:
   If(VPMNVRAM(I,0) = CInt("&h1885")) Then 'actually 3byte integer: 1883, 1884 and 1885
     JackpotGoal=False
     ComboGoal=False
     SJetsGoal=False
     TextBox3.text = ""
   End If

   If((JackpotGoal = False) And (VPMNVRAM(I,0) = CInt("&h1A5F"))) Then 'actually 3byte integer: 1A5D, 1A5E and 1A5F
     S = "Jackpot Goal" & Chr(13)
     JackpotGoal = True
     TextBox3.text = TextBox3.text & S
   End If

   If((ComboGoal = False) And (VPMNVRAM(I,0) = CInt("&h1A6B"))) Then 'actually 3byte integer: 1A69, 1A6A and 1A6B
     S = "Combo Goal" & Chr(13)
     ComboGoal = True
     TextBox3.text = TextBox3.text & S
   End If

   If((SJetsGoal = False) And (VPMNVRAM(I,0) = CInt("&h1A89"))) Then 'actually 3byte integer: 1A87, 1A88 and 1A89
     S = "Super Jets Goal" & Chr(13)
     SJetsGoal = True
     TextBox3.text = TextBox3.text & S
   End If
 Next
End Sub

Set NVRAMCallback = GetRef("DetectGoals")

The weird thing though is that these things only register during the third ball?!?

Attached Files



#803 BorgDog

BorgDog

    We come in peace.. shoot to kill.. shoot to kill.

  • Members
  • PipPipPipPip
  • 1,427 posts
  • Location:Leavenworth, WA

  • Flag: United States of America

  • Favorite Pinball: Alien Star, TNA



Posted 08 June 2016 - 01:17 PM

As it seems we are getting close to a final 10.1 release I'd like to bring up a couple things again in the interest of making installs easier on newbies 

 

1 - can we have the installer default to something other than Program Files?  We all know why.

 

2 - Can an option/question be added on whether b2sserver is to be used/installed so controller.txt gets the right value in the first line or b2sserver is just not installed.  Something like "Do you have a second monitor for the backglass" as opposed to "Do you use b2s" which if they are new they may not know what "b2s" is. Personally I would prefer installing b2sserver always, and then asking in controller.vbs whether they use it or not, but I know arngrim has a different opinion on the matter :)

 

3 - not quite as important as the first ones, but can a line be added so when a user is prompted "Are you using DOF?" it also states something like "If unsure say No". Just a little clarification for new people, I've seen this come up a few times and this might help.

 

Thanks for all the hard work guys!



#804 toxie

toxie

    VPF Veteran

  • VP Dev Team
  • PipPipPipPipPipPip
  • 5,734 posts
  • Location:berlin, germany

  • Flag: Germany

  • Favorite Pinball: AFM

Posted 08 June 2016 - 01:19 PM

sounds doable, i'll check it out today.



#805 arngrim

arngrim

    DJ Force Feedback

  • VIP
  • 2,188 posts
  • Location:Charleroi, Belgium

  • Flag: Belgium

  • Favorite Pinball: Monster bash



Posted 08 June 2016 - 04:25 PM

yeah, let's improve the messages :)

 

i don't mind changing the logic at the creation of the controller.txt, just it was created like (forcedisableb2s to false) because i would have expected that only people who use b2s would have it on their machine, and since the vpx one installer install it by default, it is not the case

 

and b2s can perfectly work even if a backglass is not present, just we need to change this option in the b2stablesettings.xml

 

<B2STableSettings>
  <ArePluginsOn>1</ArePluginsOn>
  <ShowStartupError>0</ShowStartupError>
  <LogPath>

 

so that no error pops up on the screen and process continue even without backglass, unfortunatetly that's a parameter that is not set like that by default, the first time we run a backglass, it will create the file, with the showstartuperror at value 1

 

another solution would be to have the controller.txt settings in the vp registry, that has default values, to use b2s off, all doftoys to 0, and we change them only if we require, that is also more proper that a txt file in a user folder

so the controller.vbs would read from the registry instead of the txt (if possible), and of course it would only be used if the table use controller.vbs



#806 arngrim

arngrim

    DJ Force Feedback

  • VIP
  • 2,188 posts
  • Location:Charleroi, Belgium

  • Flag: Belgium

  • Favorite Pinball: Monster bash



Posted 08 June 2016 - 04:37 PM

the registry options would be available from the options menu of vp :)

#807 Drybonz

Drybonz

    Really bad at pinball, but having fun.

  • Members
  • PipPipPipPip
  • 1,538 posts

  • Flag: ---------

  • Favorite Pinball: Theatre of Magic

Posted 08 June 2016 - 05:24 PM

the registry options would be available from the options menu of vp :)

 

This would be amazing and would really help usability for new guys, IMO.



#808 BorgDog

BorgDog

    We come in peace.. shoot to kill.. shoot to kill.

  • Members
  • PipPipPipPip
  • 1,427 posts
  • Location:Leavenworth, WA

  • Flag: United States of America

  • Favorite Pinball: Alien Star, TNA



Posted 08 June 2016 - 05:35 PM

 

the registry options would be available from the options menu of vp :)

 

This would be amazing and would really help usability for new guys, IMO.

 

 

That would also help when I want to switch back and forth when testing backglasses on my laptop where I make most of my tables.



#809 blashyrk

blashyrk

    Pinball Fan

  • Members
  • PipPipPipPip
  • 549 posts
  • Location:Norway

  • Flag: Norway

  • Favorite Pinball: Attack from Mars, Medieval Madness, White Water

  • PS3 Gamer Tag: Blashyrk

Posted 08 June 2016 - 06:38 PM

A different registry for vp 10.1 beta would be nice, so you can run vpx and vpx beta with different settings.
Is there a way to access the menu (F1) when running true full screen?

#810 Rotrax

Rotrax

    Enthusiast

  • Members
  • PipPipPip
  • 190 posts

  • Flag: Netherlands

  • Favorite Pinball: Gorgar, Black knight 2000, Capersville, Fathom, Big Bang Bar

Posted 08 June 2016 - 08:03 PM

hi,

 

Sorry if this is already said. i've noticed that when upgrading to vpx beta ( the latest) that some table lighting is flickering on my display with some tables like congo ( a bit) or Sopranos (a lot) especially around the slingshots. This is not on all tables and seems to be a setting of some kind. Is there anyone experiencing the same issue? and is there a solution my brand new screen looks very disturbing with these setting.



#811 toxie

toxie

    VPF Veteran

  • VP Dev Team
  • PipPipPipPipPipPip
  • 5,734 posts
  • Location:berlin, germany

  • Flag: Germany

  • Favorite Pinball: AFM

Posted 08 June 2016 - 08:06 PM

sounds doable, i'll check it out today.

 

and its all in. for B2S i did slightly different though. so it will install the B2S files, but only register B2S after asking.  :)

 

EDIT: oh, and in case you did not notice: VPX.1 is officially released now  :bar5:

Thanks to all the brave testers! Was again fun to do this together!


Edited by toxie, 08 June 2016 - 08:07 PM.


#812 BorgDog

BorgDog

    We come in peace.. shoot to kill.. shoot to kill.

  • Members
  • PipPipPipPip
  • 1,427 posts
  • Location:Leavenworth, WA

  • Flag: United States of America

  • Favorite Pinball: Alien Star, TNA



Posted 08 June 2016 - 09:00 PM

Awesome toxie, updated installer works great!  Thanks to you and fuzzel and everyone else.   :winetoast:   :drinks:



#813 fuzzel

fuzzel

    spaghetti code

  • VP Dev Team
  • PipPipPipPipPip
  • 2,818 posts

  • Flag: Germany

  • Favorite Pinball: yes I have

Posted 08 June 2016 - 10:14 PM

Yeah! 10.1 is out :D

 

I removed the attachments in the first post and add a link to the VPX1 installer instead.



#814 Slydog43

Slydog43

    Pinball Wizard

  • Platinum Supporter
  • 3,008 posts
  • Location:Hackettstown, NJ

  • Flag: United States of America

  • Favorite Pinball: Addams Family, All Williams 90's Games

Posted 08 June 2016 - 10:49 PM

Congrats Dev team on another milestone, The future is looking so bright I might have to wear shades  :otvclap:



#815 Ben Logan

Ben Logan

    Pinball Wizard

  • Members
  • PipPipPipPipPip
  • 2,275 posts
  • Location:California

  • Flag: ---------

  • Favorite Pinball: System 11

Posted 08 June 2016 - 11:09 PM

Super news about the 10.1 release.

Just got true fullscreen working on VPX tables thanks to you guys' instructions. Snappy! I don't mind alt-tabbing so much, as my keyboard is sitting right beside my setup. It's worth it. Upper flipper ramp shots that require quick reflexes (not that mine are quick) are more makeable now.

Rortrax- does the Congo flickering look kinda like black grainy static? If so, I have that too on just a few tables. I don't believe it's specific to the latest beta release.

Edited by Ben Logan, 08 June 2016 - 11:11 PM.


#816 bent98

bent98

    Pinball Fan

  • Members
  • PipPipPipPip
  • 1,077 posts
  • Location:NY

  • Flag: United States of America

  • Favorite Pinball: Roadshow, Haunted House, Safe Cracker

Posted 08 June 2016 - 11:52 PM

Thanks for all your hard work guys!



#817 hauntfreaks

hauntfreaks

    Real 4K Tables Since 2013

  • VIP
  • 2,523 posts
  • Location:South Jersey

  • Flag: United States of America

  • Favorite Pinball: -<3<3<3 All Real Pins



Posted 09 June 2016 - 12:12 AM

congrats guys

is there a download for the basic files??


 26794541816_30ca1cca80_o.gif 43109635392_fc11af1a57_o.gif


#818 Outhere

Outhere

    Pinball Wizard

  • Platinum Supporter
  • 4,807 posts

  • Flag: United States of America

  • Favorite Pinball: M M

Posted 09 June 2016 - 12:18 AM

Visual Pinball X (Standalone EXE) 10.1.0 10.1.0

http://www.vpforums....&showfile=11572

-

VPX installer 10.1.0

http://www.vpforums....&showfile=11573


Edited by Outhere, 09 June 2016 - 12:32 AM.


#819 hauntfreaks

hauntfreaks

    Real 4K Tables Since 2013

  • VIP
  • 2,523 posts
  • Location:South Jersey

  • Flag: United States of America

  • Favorite Pinball: -<3<3<3 All Real Pins



Posted 09 June 2016 - 12:24 AM

thanks


 26794541816_30ca1cca80_o.gif 43109635392_fc11af1a57_o.gif


#820 Shockman

Shockman

    Pinball Fan

  • VIP
  • 1,717 posts
  • Location:Portland Or.

  • Flag: United States of America

  • Favorite Pinball: Star Trek

Posted 09 June 2016 - 01:15 AM

Should all versions registered or not, be removed from the system if one was to go with the installer?

 

Does the stand alone one have the core.vbs, and other support files that have been changed for VPX?