George,I am currently editing and testing out how to change the Rules levels for equipment in SSW. I am currently looking at Mixed tech. Can you point me to the correct source file that dictates what rules level mixed tech is used?
--
You received this message because you are subscribed to the Google Groups "Solaris Skunk Werks" group.
To unsubscribe from this group and stop receiving emails from it, send an email to solaris-skunk-w...@googlegroups.com.
To post to this group, send email to solaris-s...@googlegroups.com.
Visit this group at http://groups.google.com/group/solaris-skunk-werks.
For more options, visit https://groups.google.com/d/optout.
I want to change Mixed tech from experimental to advanced per TRO Protypes. It's one of the last changes that need to be made
--
You received this message because you are subscribed to the Google Groups "Solaris Skunk Werks" group.
How does SSW knows that mixed tech is experimental??
private void BuildTechBaseSelector() { switch( CurMech.GetEra() ) { case AvailableCode.ERA_STAR_LEAGUE: cmbTechBase.setModel( new javax.swing.DefaultComboBoxModel( new String[] { "Inner Sphere" } ) ); break; default: if( CurMech.GetRulesLevel() >= AvailableCode.RULES_EXPERIMENTAL ) { cmbTechBase.setModel( new javax.swing.DefaultComboBoxModel( new String[] { "Inner Sphere", "Clan", "Mixed" } ) ); } else if( CurMech.GetRulesLevel() == AvailableCode.RULES_INTRODUCTORY ) { cmbTechBase.setModel( new javax.swing.DefaultComboBoxModel( new String[] { "Inner Sphere" } ) ); } else { cmbTechBase.setModel( new javax.swing.DefaultComboBoxModel( new String[] { "Inner Sphere", "Clan" } ) ); } break; } try { cmbTechBase.setSelectedIndex( CurMech.GetTechbase() ); } catch( Exception e ) { Media.Messager( "Could not set the Techbase due to changes.\nReverting to Inner Sphere." ); cmbTechBase.setSelectedIndex( 0 ); } }
Where it checks the GetRulesLevel against EXPERIMENTAL.
George
Or another way to ask:
How does SSW knows that mixed tech is experimental??
--
You received this message because you are subscribed to the Google Groups "Solaris Skunk Werks" group.
Mixed Tech itself? Ooh..hmm ok looks like it's in frmMain BuildTechBaseSelector method (ln 999).George
On Sun, Jul 19, 2015 at 6:38 AM, Topason <top...@gmail.com> wrote:
I want to change Mixed tech from experimental to advanced per TRO Protypes. It's one of the last changes that need to be made
--
You received this message because you are subscribed to the Google Groups "Solaris Skunk Werks" group.
To unsubscribe from this group and stop receiving emails from it, send an email to solaris-skunk-werks+unsub...@googlegroups.com.
And where is frmMain at? I do not see it in the Src folder
On Sunday, July 19, 2015 at 10:12:27 AM UTC-4, Skyhigh wrote:
Mixed Tech itself? Ooh..hmm ok looks like it's in frmMain BuildTechBaseSelector method (ln 999).George
On Sun, Jul 19, 2015 at 6:38 AM, Topason <top...@gmail.com> wrote:
I want to change Mixed tech from experimental to advanced per TRO Protypes. It's one of the last changes that need to be made
--
You received this message because you are subscribed to the Google Groups "Solaris Skunk Werks" group.
To unsubscribe from this group and stop receiving emails from it, send an email to solaris-skunk-w...@googlegroups.com.
To post to this group, send email to solaris-s...@googlegroups.com.
Visit this group at http://groups.google.com/group/solaris-skunk-werks.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Solaris Skunk Werks" group.
To unsubscribe from this group and stop receiving emails from it, send an email to solaris-skunk-w...@googlegroups.com.