Пример #1
0
        private void CreatePatritians(StreamWriter titleWriter, string liege, int id, string culture, string religion)
        {
            int numPat = m_options.Random.Next(2, 5);
            List <Character> chars;

            Log(string.Format(" --Creating {0} Patricians", numPat));
            for (int i = 1; i <= numPat; i++)
            {
                Log(string.Format("   --Patrician {0}:", i));

                string name = GetFamilyHoldingName(id + i);
                Log(String.Format("     Holding: {0}", name));

                CharacterOption co = new CharacterOption();
                co.Culture           = m_options.Data.GetCulture(culture);
                co.SpecifiedCulture  = true;
                co.Religion          = m_options.Data.Religions[religion];
                co.SpecifiedReligion = true;
                co.Gender            = RuleSet.Gender.Male;
                co.IsSpouse          = false;

                chars = CreateRandomCharacter(co, m_availDynasties, false);
                foreach (Character c in chars)
                {
                    WriteCharacter(m_charWriter, c);
                }
                Log(String.Format("     ID: {0}", chars[0].ID));

                //Title definition.
                titleWriter.WriteLine(name + " = {");
                titleWriter.WriteLine("\tculture = " + culture);
                titleWriter.WriteLine("\treligion = " + religion);
                titleWriter.WriteLine("}");

                //Title history
                string titlePath = Path.Combine(m_options.Data.MyDocsDir.FullName, m_options.Mod.Path);
                titlePath = Path.Combine(titlePath, "history/titles/" + name + ".txt").Replace('\\', '/');
                using (StreamWriter sw = new StreamWriter(titlePath, false, Encoding.GetEncoding(1252)))
                {
                    DateTime outDate = chars[0].Events[0].Date.AddDays(1);

                    sw.Write(outDate.Year + "." + outDate.Month);
                    sw.WriteLine("." + outDate.Day + "= {");
                    sw.WriteLine("\tholding_dynasty = " + chars[0].Dynasty);
                    sw.WriteLine("\tliege = \"" + liege + "\"");
                    sw.WriteLine("\tholder = " + chars[0].ID.ToString());
                    sw.WriteLine("}");
                }
            }
        }
Пример #2
0
        protected bool CreateRulesetCharacters(StreamWriter charWriter)
        {
            Log("Generating Ruleset Characters");
            Dictionary <int, Dynasty> dyns = new Dictionary <int, Dynasty>(m_options.Data.Dynasties);
            List <Character>          chars;

            foreach (CharacterRule cRule in m_options.RuleSet.CharRules)
            {
                if (!m_options.Data.ContainsCulture(cRule.Culture))
                {
                    m_log.Log(String.Format("Culture not found for ruleset character: {0}", cRule.Culture), Logger.LogType.Error);
                    continue;
                }
                if (!m_options.Data.Religions.ContainsKey(cRule.Religion))
                {
                    m_log.Log(String.Format("Religion not found for ruleset character: {0}", cRule.Religion), Logger.LogType.Error);
                    continue;
                }

                Culture  cul = m_options.Data.GetCulture(cRule.Culture);
                Religion rel = m_options.Data.Religions[cRule.Religion];

                CharacterOption co = new CharacterOption();
                co.Culture           = cul;
                co.SpecifiedCulture  = true;
                co.Religion          = rel;
                co.SpecifiedReligion = true;
                co.Gender            = cRule.IsFemale ? RuleSet.Gender.Female : RuleSet.Gender.Male;
                if (cRule.ID != -1)
                {
                    co.ID = cRule.ID;
                }

                if (cRule.Dynasty != -1 && m_options.Data.Dynasties.ContainsKey(cRule.Dynasty))
                {
                    co.Dynasty          = m_options.Data.Dynasties[cRule.Dynasty];
                    co.SpecifiedDynasty = true;
                }

                chars = CreateRandomCharacter(co, dyns, true);
                Log(string.Format(" --Name: {0} ID: {1}", chars[0].Name, chars[0].ID));

                int i;
                i = cRule.WriteCharacter ? 0 : 1;
                for ( ; i < chars.Count; i++)
                {
                    WriteCharacter(charWriter, chars[i]);
                }

                //Output owned titles.
                foreach (string t in cRule.Titles)
                {
                    Log(string.Format(" --Giving Title: {0}", t));

                    Title tit;
                    if (!m_options.Data.Counties.TryGetValue(t, out tit))
                    {
                        if (!m_options.Data.Duchies.TryGetValue(t, out tit))
                        {
                            if (!m_options.Data.Kingdoms.TryGetValue(t, out tit))
                            {
                                m_options.Data.Empires.TryGetValue(t, out tit);
                            }
                        }
                    }

                    string path = Path.Combine(m_options.Data.MyDocsDir.FullName, m_options.Mod.Path);
                    path = Path.Combine(path, "history/titles/" + t + ".txt").Replace('\\', '/');

                    WriteTitleOwner(new FileInfo(path), chars[0]);
                    MakeDeJureLiege(new FileInfo(path), true, "", false, null);
                }
            }

            return(true);
        }
Пример #3
0
        protected List <Character> CreateRandomCharacter(CharacterOption charOptions, Dictionary <int, Dynasty> availDynasties, bool outputLaws)
        {
            List <Character> retList = new List <Character>();

            #region This Character
            #region Culture, Religion, Dynasty
            Culture curCul;
            if (charOptions.SpecifiedCulture)
            {
                curCul = charOptions.Culture;
            }
            else
            {
                curCul = charOptions.CultureList.RandomItem(m_options.Random);
            }

            Religion curRel;
            if (charOptions.SpecifiedReligion)
            {
                curRel = charOptions.Religion;
            }
            else
            {
                curRel = charOptions.ReligionList.RandomItem(m_options.Random);
            }

            Dynasty dyn;

            if (charOptions.SpecifiedDynasty)
            {
                dyn = charOptions.Dynasty;
            }
            else
            {
                dyn = m_options.Data.GetDynastyByCulture(availDynasties, curCul, m_options.Random);
                while (dyn == null)
                {
                    if (availDynasties.Count == 0)
                    {
                        availDynasties = new Dictionary <int, Dynasty>(m_options.Data.Dynasties);
                    }

                    dyn = m_options.Data.GetDynastyByCulture(availDynasties,
                                                             m_options.Data.GetRandomCulture(m_options.Random).Value,
                                                             m_options.Random);
                }
                availDynasties.Remove(dyn.ID);
            }

            #endregion

            Character curChar = new Character();
            retList.Add(curChar);


            int age;
            if (!charOptions.IsSpouse)
            {
                age = m_options.Random.Normal(17, 40);
            }
            else
            {
                age = m_options.Random.Normal(charOptions.PartnerAge, 3.0).Clamp(17, 99);
            }

            curChar.CustomFlags["age"] = age;

            int birthYear = m_options.StartDate - 1 - age;
            curChar.Events.Add(GetBirthDeathEvent(birthYear, "birth"));

            int deathYear = m_options.StartDate + m_options.Random.Normal(5, 40);
            curChar.Events.Add(GetBirthDeathEvent(deathYear, "death"));

            curChar.ID       = charOptions.ID != 0 ? charOptions.ID : m_options.CharID++;
            curChar.Culture  = curCul.Name;
            curChar.Religion = curRel.Name;
            curChar.Dynasty  = dyn.ID;

            // Check rule set restrictions.
            if (charOptions.Gender == RuleSet.Gender.Random)
            {
                charOptions.Gender = m_options.RuleSet.GetGender(curCul, curRel);
            }

            if (charOptions.Gender == RuleSet.Gender.Random)
            {
                curChar.IsFemale = (m_options.Random.Next(101) <= m_options.RuleSet.FemaleRulerChance);
            }
            else
            {
                curChar.IsFemale = charOptions.Gender == RuleSet.Gender.Female;
            }

            curChar.Name = curCul.GetRandomName(curChar.IsFemale, m_options.Random);
            #endregion

            #region Spouse

            if (!charOptions.IsSpouse && age > 20 && m_options.Random.Next(0, 101) < m_options.RuleSet.RulerSpouseChance)
            {
                CharacterOption spouseOptions = charOptions;

                spouseOptions.Gender           = curChar.IsFemale ? RuleSet.Gender.Male : RuleSet.Gender.Female;
                spouseOptions.IsSpouse         = true;
                spouseOptions.PartnerAge       = age;
                spouseOptions.SpecifiedDynasty = false;
                spouseOptions.ID = 0;

                List <Character> posSpouse = CreateRandomCharacter(spouseOptions, availDynasties, false);

                curChar.CurrentSpouse      = posSpouse[0];
                posSpouse[0].CurrentSpouse = curChar;

                int youngestAge = (int)curChar.CurrentSpouse.CustomFlags["age"];

                if (age < youngestAge)
                {
                    youngestAge = age;
                }

                int marriageYear = m_options.Random.Next(1, youngestAge - 16);
                int month        = m_options.Random.Next(1, 12);
                int day          = m_options.Random.Next(1, 28);

                EventOption spouseEvent = new EventOption(new DateTime(m_options.StartDate - marriageYear, month, day));
                spouseEvent.SubOptions.Add(new IntegerOption("add_spouse", curChar.ID));
                curChar.CurrentSpouse.Events.Add(spouseEvent);

                EventOption curCharEvent = new EventOption(new DateTime(m_options.StartDate - marriageYear, month, day));
                curCharEvent.SubOptions.Add(new IntegerOption("add_spouse", posSpouse[0].ID));
                curChar.Events.Add(curCharEvent);

                retList.Add(posSpouse[0]);
            }
            #endregion

            #region Law Generation

            if (!charOptions.IsSpouse)
            {
                LawSet laws = m_options.RuleSet.LawRules.GetLawSet(curCul, curRel, m_options.Random);
                if (outputLaws)
                {
                    Log(" --Fetched realm laws: " +
                        "\n      Succession: " + laws.Succession +
                        "\n      Gender: " + laws.Gender +
                        "\n      Crown: " + laws.CrownAuthority +
                        "\n      Feudal Levy: " + laws.FeudalLevy +
                        "\n      Feudal Tax: " + laws.FeudalTax +
                        "\n      City Levy: " + laws.CityLevy +
                        "\n      City Tax: " + laws.CityTax +
                        "\n      Church Levy: " + laws.ChurchLevy +
                        "\n      Church Tax: " + laws.ChurchTax +
                        "\n      Iqta Levy: " + laws.IqtaLevy +
                        "\n      Iqta Tax:" + laws.IqtaTax);
                }
                curChar.CustomFlags["laws"] = laws;
            }
            #endregion

            return(retList);
        }
Пример #4
0
        protected void MakeCharactersForTitles(StreamWriter charWriter, Dictionary <int, Dynasty> availDynasties, List <Title> titles,
                                               bool setLiege, string liege, bool setDeJureLiege, string deJureLiege, Character presetChar, Character liegeChar)
        {
            List <Character> curChars = null;
            FileInfo         titleFile;
            string           titlePath = Path.Combine(m_options.Data.MyDocsDir.FullName, m_options.Mod.Path);

            foreach (var title in titles)
            {
                if (TaskStatus.Abort)
                {
                    return;
                }

                if (title.IsTitular)
                {
                    continue;
                }

                if (title.Landless)
                {
                    continue;
                }

                if (title.Culture == null || title.Religion == null)
                {
                    continue;
                }

                Log("Title " + title.TitleID);

                if (!m_options.Data.ContainsCulture(title.Culture) ||
                    !m_options.Data.Religions.ContainsKey(title.Religion))
                {
                    Log(" --Unable to find culture or religion");
                    continue;
                }

                if (m_options.RuleSet.IgnoredTitles.Contains(title.TitleID))
                {
                    Log(" --Title in Ignore List");
                    continue;
                }

                if (presetChar == null)
                {
                    Log(" --Creating Character");

                    CharacterOption charOptions = new CharacterOption();
                    if (liegeChar == null || m_options.Random.Next(0, 100) > m_options.RuleSet.LiegeCultureChance)
                    {
                        charOptions.Culture = m_options.Data.GetCulture(title.Culture);
                    }
                    else
                    {
                        charOptions.Culture = m_options.Data.GetCulture(liegeChar.Culture);
                    }

                    charOptions.SpecifiedCulture = true;

                    if (liegeChar == null || m_options.Random.Next(0, 100) > m_options.RuleSet.LiegeReligionChance)
                    {
                        charOptions.Religion = m_options.Data.Religions[title.Religion];
                    }
                    else
                    {
                        charOptions.Religion = m_options.Data.Religions[liegeChar.Religion];
                    }

                    charOptions.SpecifiedReligion = true;
                    charOptions.IsSpouse          = false;
                    charOptions.Gender            = RuleSet.Gender.Random;

                    curChars = CreateRandomCharacter(charOptions, availDynasties, true);
                    foreach (Character c in curChars)
                    {
                        WriteCharacter(charWriter, c);
                    }
                }
                else
                {
                    curChars = new List <Character>();
                    curChars.Add(presetChar);
                }

                Log(" --Giving Title");
                titleFile = new FileInfo(Path.Combine(titlePath, "history/titles/" + title.TitleID + ".txt").Replace('\\', '/'));
                WriteTitleOwner(titleFile, curChars[0]);
                MakeDeJureLiege(titleFile, setLiege, liege, setDeJureLiege, deJureLiege);


                if (title.TitleID.StartsWith("c_"))
                {
                    continue;
                }

                //Randomise title order.
                List <Title> subTitles = title.SubTitles.Values.ToList().OrderBy(a => m_options.Random.Next()).ToList();

                int reserved = 2;
                if (title.TitleID.StartsWith("d_"))
                {
                    reserved = m_options.Random.Next(3, 5);
                }
                Log(" --Giving First " + reserved + " Sub-Titles");
                Title subTitle;
                for (int i = 0; i < reserved && i < subTitles.Count; i++)
                {
                    subTitle = subTitles[i];
                    if (m_options.RuleSet.IgnoredTitles.Contains(subTitle.TitleID))
                    {
                        continue;
                    }
                    titleFile =
                        new FileInfo(Path.Combine(titlePath, "history/titles/" + subTitle.TitleID + ".txt").Replace('\\', '/'));
                    if (subTitle.TitleID.StartsWith("c_"))
                    {
                        WriteTitleOwner(titleFile, curChars[0]);
                        MakeDeJureLiege(titleFile, true, title.TitleID, false, null);
                    }
                    else
                    {
                        List <Title> tList = new List <Title>();
                        tList.Add(subTitle);
                        MakeCharactersForTitles(charWriter, availDynasties, tList, true, title.TitleID, true, title.TitleID, curChars[0], null);
                    }
                }
                if (subTitles.Count > reserved)
                {
                    Log(" --Making Vassals for Remaining Sub-Titles");
                    List <Title> subTitleList = new List <Title>();
                    for (int i = reserved; i < subTitles.Count; i++)
                    {
                        subTitleList.Add(subTitles[i]);
                    }
                    MakeCharactersForTitles(charWriter, availDynasties, subTitleList, true, title.TitleID, true, title.TitleID, null, curChars[0]);
                }
            }
        }
Пример #5
0
		protected bool CreateRulesetCharacters( StreamWriter charWriter )
		{
			Log( "Generating Ruleset Characters" );
			Dictionary<int, Dynasty> dyns = new Dictionary<int, Dynasty>( m_options.Data.Dynasties );
			List<Character> chars;

			foreach( CharacterRule cRule in m_options.RuleSet.CharRules )
			{
				if( !m_options.Data.ContainsCulture( cRule.Culture ) )
				{
					m_log.Log( String.Format( "Culture not found for ruleset character: {0}", cRule.Culture ), Logger.LogType.Error );
					continue;
				}
				if( !m_options.Data.Religions.ContainsKey( cRule.Religion ) )
				{
					m_log.Log( String.Format( "Religion not found for ruleset character: {0}", cRule.Religion ), Logger.LogType.Error );
					continue;
				}

				Culture cul = m_options.Data.GetCulture( cRule.Culture );
				Religion rel = m_options.Data.Religions[cRule.Religion];

				CharacterOption co = new CharacterOption();
				co.Culture = cul;
				co.SpecifiedCulture = true;
				co.Religion = rel;
				co.SpecifiedReligion = true;
				co.Gender = cRule.IsFemale ? RuleSet.Gender.Female : RuleSet.Gender.Male;
				if( cRule.ID != -1 )
					co.ID = cRule.ID;

				if( cRule.Dynasty != -1 && m_options.Data.Dynasties.ContainsKey( cRule.Dynasty ) )
				{
					co.Dynasty = m_options.Data.Dynasties[cRule.Dynasty];
					co.SpecifiedDynasty = true;
				}

				chars = CreateRandomCharacter( co, dyns, true );
				Log( string.Format( " --Name: {0} ID: {1}", chars[0].Name, chars[0].ID ) );

				int i;
				i = cRule.WriteCharacter ? 0 : 1;
				for( ; i < chars.Count; i++ )
					WriteCharacter( charWriter, chars[i] );

				//Output owned titles.
				foreach( string t in cRule.Titles )
				{
					Log( string.Format( " --Giving Title: {0}", t ) );

					Title tit;
					if( !m_options.Data.Counties.TryGetValue( t, out tit ) )
						if( !m_options.Data.Duchies.TryGetValue( t, out tit ) )
							if( !m_options.Data.Kingdoms.TryGetValue( t, out tit ) )
								m_options.Data.Empires.TryGetValue( t, out tit );

					string path = Path.Combine( m_options.Data.MyDocsDir.FullName, m_options.Mod.Path );
					path = Path.Combine( path, "history/titles/" + t + ".txt" ).Replace( '\\', '/' );

					WriteTitleOwner( new FileInfo( path ), chars[0] );
					MakeDeJureLiege( new FileInfo( path ), true, "", false, null );
				}
			}

			return true;
		}
Пример #6
0
		protected List<Character> CreateRandomCharacter( CharacterOption charOptions, Dictionary<int, Dynasty> availDynasties, bool outputLaws )
		{
			List<Character> retList = new List<Character>();

			#region This Character
			#region Culture, Religion, Dynasty
			Culture curCul;
			if( charOptions.SpecifiedCulture )
				curCul = charOptions.Culture;
			else
				curCul = charOptions.CultureList.RandomItem( m_options.Random );

			Religion curRel;
			if( charOptions.SpecifiedReligion )
				curRel = charOptions.Religion;
			else
				curRel = charOptions.ReligionList.RandomItem( m_options.Random );

			Dynasty dyn;

			if( charOptions.SpecifiedDynasty )
			{
				dyn = charOptions.Dynasty;
			} else
			{
				dyn = m_options.Data.GetDynastyByCulture( availDynasties, curCul, m_options.Random );
				while( dyn == null )
				{
					if( availDynasties.Count == 0 )
						availDynasties = new Dictionary<int, Dynasty>( m_options.Data.Dynasties );

					dyn = m_options.Data.GetDynastyByCulture( availDynasties,
															  m_options.Data.GetRandomCulture( m_options.Random ).Value,
															  m_options.Random );
				}
				availDynasties.Remove( dyn.ID );
			}

			#endregion

			Character curChar = new Character();
			retList.Add( curChar );


			int age;
			if( !charOptions.IsSpouse )
				age = m_options.Random.Normal( 17, 40 );
			else
				age = m_options.Random.Normal( charOptions.PartnerAge, 3.0 ).Clamp( 17, 99 );

			curChar.CustomFlags["age"] = age;

			int birthYear = m_options.StartDate - 1 - age;
			curChar.Events.Add( GetBirthDeathEvent( birthYear, "birth" ) );

			int deathYear = m_options.StartDate + m_options.Random.Normal( 5, 40 );
			curChar.Events.Add( GetBirthDeathEvent( deathYear, "death" ) );

			curChar.ID = charOptions.ID != 0 ? charOptions.ID : m_options.CharID++;
			curChar.Culture = curCul.Name;
			curChar.Religion = curRel.Name;
			curChar.Dynasty = dyn.ID;

			// Check rule set restrictions.
			if( charOptions.Gender == RuleSet.Gender.Random )
				charOptions.Gender = m_options.RuleSet.GetGender( curCul, curRel );

			if( charOptions.Gender == RuleSet.Gender.Random )
				curChar.IsFemale = ( m_options.Random.Next( 101 ) <= m_options.RuleSet.FemaleRulerChance );
			else
				curChar.IsFemale = charOptions.Gender == RuleSet.Gender.Female;

			curChar.Name = curCul.GetRandomName( curChar.IsFemale, m_options.Random );
			#endregion

			#region Spouse

			if( !charOptions.IsSpouse && age > 20 && m_options.Random.Next( 0, 101 ) < m_options.RuleSet.RulerSpouseChance )
			{
				CharacterOption spouseOptions = charOptions;

				spouseOptions.Gender = curChar.IsFemale ? RuleSet.Gender.Male : RuleSet.Gender.Female;
				spouseOptions.IsSpouse = true;
				spouseOptions.PartnerAge = age;
				spouseOptions.SpecifiedDynasty = false;
				spouseOptions.ID = 0;

				List<Character> posSpouse = CreateRandomCharacter( spouseOptions, availDynasties, false );

				curChar.CurrentSpouse = posSpouse[0];
				posSpouse[0].CurrentSpouse = curChar;

				int youngestAge = (int)curChar.CurrentSpouse.CustomFlags["age"];

				if( age < youngestAge )
					youngestAge = age;

				int marriageYear = m_options.Random.Next( 1, youngestAge - 16 );
				int month = m_options.Random.Next( 1, 12 );
				int day = m_options.Random.Next( 1, 28 );

				EventOption spouseEvent = new EventOption( new DateTime( m_options.StartDate - marriageYear, month, day ) );
				spouseEvent.SubOptions.Add( new IntegerOption( "add_spouse", curChar.ID ) );	
				curChar.CurrentSpouse.Events.Add( spouseEvent );

				EventOption curCharEvent = new EventOption( new DateTime( m_options.StartDate - marriageYear, month, day ) );
				curCharEvent.SubOptions.Add( new IntegerOption( "add_spouse", posSpouse[0].ID ) );
				curChar.Events.Add( curCharEvent );

				retList.Add( posSpouse[0] );
			}
			#endregion

			#region Law Generation

			if( !charOptions.IsSpouse )
			{
				LawSet laws = m_options.RuleSet.LawRules.GetLawSet( curCul, curRel, m_options.Random );
				if( outputLaws )
				{
					Log( " --Fetched realm laws: " +
								 "\n      Succession: " + laws.Succession +
								 "\n      Gender: " + laws.Gender +
								 "\n      Crown: " + laws.CrownAuthority +
								 "\n      Feudal Levy: " + laws.FeudalLevy +
								 "\n      Feudal Tax: " + laws.FeudalTax +
								 "\n      City Levy: " + laws.CityLevy +
								 "\n      City Tax: " + laws.CityTax +
								 "\n      Church Levy: " + laws.ChurchLevy +
								 "\n      Church Tax: " + laws.ChurchTax +
								 "\n      Iqta Levy: " + laws.IqtaLevy +
								 "\n      Iqta Tax:" + laws.IqtaTax );
				}
				curChar.CustomFlags["laws"] = laws;
			}
			#endregion

			return retList;
		}
Пример #7
0
		protected void MakeCharactersForTitles( StreamWriter charWriter, Dictionary<int, Dynasty> availDynasties, List<Title> titles,
								  bool setLiege, string liege, bool setDeJureLiege, string deJureLiege, Character presetChar, Character liegeChar )
		{
			List<Character> curChars = null;
			FileInfo titleFile;
			string titlePath = Path.Combine( m_options.Data.MyDocsDir.FullName, m_options.Mod.Path );

			foreach( var title in titles )
			{
				if( TaskStatus.Abort )
					return;

				if( title.IsTitular )
					continue;

				if( title.Landless )
					continue;

				if( title.Culture == null || title.Religion == null )
					continue;

				Log( "Title " + title.TitleID );

				if( !m_options.Data.ContainsCulture( title.Culture )
					 || !m_options.Data.Religions.ContainsKey( title.Religion ) )
				{
					Log( " --Unable to find culture or religion" );
					continue;
				}

				if( m_options.RuleSet.IgnoredTitles.Contains( title.TitleID ) )
				{
					Log( " --Title in Ignore List" );
					continue;
				}

				if( presetChar == null )
				{
					Log( " --Creating Character" );

					CharacterOption charOptions = new CharacterOption();
					if( liegeChar == null || m_options.Random.Next( 0, 100 ) > m_options.RuleSet.LiegeCultureChance )
						charOptions.Culture = m_options.Data.GetCulture( title.Culture );
					else
						charOptions.Culture = m_options.Data.GetCulture( liegeChar.Culture );

					charOptions.SpecifiedCulture = true;

					if( liegeChar == null || m_options.Random.Next( 0, 100 ) > m_options.RuleSet.LiegeReligionChance )
						charOptions.Religion = m_options.Data.Religions[title.Religion];
					else
						charOptions.Religion = m_options.Data.Religions[liegeChar.Religion];

					charOptions.SpecifiedReligion = true;
					charOptions.IsSpouse = false;
					charOptions.Gender = RuleSet.Gender.Random;

					curChars = CreateRandomCharacter( charOptions, availDynasties, true );
					foreach( Character c in curChars )
						WriteCharacter( charWriter, c );
				} else
				{
					curChars = new List<Character>();
					curChars.Add( presetChar );
				}

				Log( " --Giving Title" );
				titleFile = new FileInfo( Path.Combine( titlePath, "history/titles/" + title.TitleID + ".txt" ).Replace( '\\', '/' ) );
				WriteTitleOwner( titleFile, curChars[0] );
				MakeDeJureLiege( titleFile, setLiege, liege, setDeJureLiege, deJureLiege );


				if( title.TitleID.StartsWith( "c_" ) )
					continue;

				//Randomise title order.
				List<Title> subTitles = title.SubTitles.Values.ToList().OrderBy( a => m_options.Random.Next() ).ToList();

				int reserved = 2;
				if( title.TitleID.StartsWith( "d_" ) )
					reserved = m_options.Random.Next( 3, 5 );
				Log( " --Giving First " + reserved + " Sub-Titles" );
				Title subTitle;
				for( int i = 0; i < reserved && i < subTitles.Count; i++ )
				{
					subTitle = subTitles[i];
					if( m_options.RuleSet.IgnoredTitles.Contains( subTitle.TitleID ) )
						continue;
					titleFile =
						new FileInfo( Path.Combine( titlePath, "history/titles/" + subTitle.TitleID + ".txt" ).Replace( '\\', '/' ) );
					if( subTitle.TitleID.StartsWith( "c_" ) )
					{
						WriteTitleOwner( titleFile, curChars[0] );
						MakeDeJureLiege( titleFile, true, title.TitleID, false, null );
					} else
					{
						List<Title> tList = new List<Title>();
						tList.Add( subTitle );
						MakeCharactersForTitles( charWriter, availDynasties, tList, true, title.TitleID, true, title.TitleID, curChars[0], null );
					}
				}
				if( subTitles.Count > reserved )
				{
					Log( " --Making Vassals for Remaining Sub-Titles" );
					List<Title> subTitleList = new List<Title>();
					for( int i = reserved; i < subTitles.Count; i++ )
						subTitleList.Add( subTitles[i] );
					MakeCharactersForTitles( charWriter, availDynasties, subTitleList, true, title.TitleID, true, title.TitleID, null, curChars[0] );
				}
			}
		}
Пример #8
0
        private List <Character> CreateNewFeudalCharacters(int numRealms, List <Province> usableProvs, Character liege = null)
        {
            Log(" --Creating Feudal Characters");

            List <Character> owners = new List <Character>(numRealms);
            List <Character> chars;
            Province         prov;
            List <Province>  provsOwnedByChar;
            Culture          provCul;
            Religion         provRel;

            for (int i = 0; i < numRealms; i++)
            {
                if (usableProvs.Count == 0)
                {
                    break;
                }

                int id = m_options.Random.Next(usableProvs.Count);

                prov = usableProvs[id];
                usableProvs.Remove(prov);

                #region Filtering
                //Province doesn't have associated title.
                if (prov.Title == null || !m_options.Data.Counties.ContainsKey(prov.Title))
                {
                    i--;
                    m_log.Log(String.Format("Province {0}-{1}: Title ID is null or doesn't exist.", prov.ID, prov.Title),
                              Logger.LogType.Error);
                    continue;
                }

                if (prov.Culture == null || prov.Religion == null ||
                    !m_options.Data.ContainsCulture(prov.Culture) ||
                    !m_options.Data.Religions.ContainsKey(prov.Religion))
                {
                    i--;
                    m_log.Log(String.Format("Province {0}-{1}: Culture or religion is null or doesn't exist. {2}, {3}",
                                            prov.ID, prov.Title, prov.Culture, prov.Religion),
                              Logger.LogType.Error);
                    continue;
                }
                #endregion

                Log("Title " + prov.Title);

                // Need to handle chance of liege culture and religion.
                if (liege != null && m_options.Random.Next(100) <= m_options.RuleSet.LiegeCultureChance)
                {
                    provCul = m_options.Data.GetCulture(liege.Culture);
                }
                else
                {
                    provCul = m_options.Data.GetCulture(prov.Culture);
                }

                if (liege != null && m_options.Random.Next(100) > m_options.RuleSet.LiegeReligionChance)
                {
                    provRel = m_options.Data.Religions[liege.Religion];
                }
                else
                {
                    provRel = m_options.Data.Religions[prov.Religion];
                }

                CharacterOption co = new CharacterOption();
                co.Culture           = provCul;
                co.SpecifiedCulture  = true;
                co.Religion          = provRel;
                co.SpecifiedReligion = true;
                co.IsSpouse          = false;
                co.Gender            = RuleSet.Gender.Random;

                chars = CreateRandomCharacter(co, m_availDynasties, true);

                prov.CustomFlags["charOwned"] = true;
                prov.CustomFlags["charOwner"] = chars[0].ID;
                provsOwnedByChar = new List <Province>();
                provsOwnedByChar.Add(prov);

                chars[0].CustomFlags["provs"]      = provsOwnedByChar;
                chars[0].CustomFlags["duchies"]    = new List <Title>();
                chars[0].CustomFlags["kingdoms"]   = new List <Title>();
                chars[0].CustomFlags["neighbours"] = new List <int>();

                chars[0].CustomFlags["realmDuchies"] = new List <Title>();

                chars[0].CustomFlags["VassalCount"] = 0;
                chars[0].CustomFlags["Liege"]       = liege;
                chars[0].CustomFlags["Tier"]        = TitleTier.Count;

                owners.Add(chars[0]);
                if (chars.Count == 2)
                {
                    m_spouses.Add(chars[1]);
                }
            }

            return(owners);
        }
Пример #9
0
        private void MakeRepublicChars(List <Character> owners, int reps)
        {
            // Get list of coastal provinces.
            List <Province>  provs = m_unownedProvs.Where(p => p.IsCoastal).ToList();
            Province         prov;
            List <Province>  provsOwnedByChar;
            List <Character> chars;
            Culture          provCul;
            Religion         provRel;

            for (int i = 0; i < reps; i++)
            {
                if (provs.Count == 0)
                {
                    break;
                }

                int id = m_options.Random.Next(provs.Count);
                prov = provs[id];
                provs.Remove(prov);
                m_unownedProvs.Remove(prov);

                #region Filtering
                //Province doesn't have associated title.
                if (prov.Title == null || !m_options.Data.Counties.ContainsKey(prov.Title))
                {
                    i--;
                    m_log.Log(String.Format("Province {0}-{1}: Title ID is null or doesn't exist.", prov.ID, prov.Title),
                              Logger.LogType.Error);
                    continue;
                }

                if (prov.Culture == null || prov.Religion == null ||
                    !m_options.Data.ContainsCulture(prov.Culture) ||
                    !m_options.Data.Religions.ContainsKey(prov.Religion))
                {
                    i--;
                    m_log.Log(String.Format("Province {0}-{1}: Culture or religion is null or doesn't exist. {2}, {3}",
                                            prov.ID, prov.Title, prov.Culture, prov.Religion),
                              Logger.LogType.Error);
                    continue;
                }
                #endregion

                provRel = m_options.Data.Religions[prov.Religion];
                provCul = m_options.Data.GetCulture(prov.Culture);

                Log("Title " + prov.Title);

                CharacterOption co = new CharacterOption();
                co.Culture           = provCul;
                co.SpecifiedCulture  = true;
                co.Religion          = provRel;
                co.SpecifiedReligion = true;
                co.IsSpouse          = false;
                co.Gender            = RuleSet.Gender.Male;

                chars = CreateRandomCharacter(co, m_availDynasties, true);

                chars[0].CustomFlags["duchies"]    = new List <Title>();
                chars[0].CustomFlags["kingdoms"]   = new List <Title>();
                chars[0].CustomFlags["isRep"]      = true;
                chars[0].CustomFlags["neighbours"] = new List <int>();
                chars[0].CustomFlags["Liege"]      = null;
                chars[0].CustomFlags["Tier"]       = TitleTier.Count;

                prov.CustomFlags["charOwned"] = true;
                prov.CustomFlags["charOwner"] = chars[0].ID;

                provsOwnedByChar = new List <Province>();
                chars[0].CustomFlags["provs"] = provsOwnedByChar;
                provsOwnedByChar.Add(prov);

                owners.Add(chars[0]);
                if (chars.Count == 2)
                {
                    m_spouses.Add(chars[1]);
                }
            }
        }
Пример #10
0
		private List<Character> CreateNewFeudalCharacters( int numRealms, List<Province> usableProvs, Character liege = null )
		{
			Log( " --Creating Feudal Characters" );

			List<Character> owners = new List<Character>( numRealms );
			List<Character> chars;
			Province prov;
			List<Province> provsOwnedByChar;
			Culture provCul;
			Religion provRel;

			for( int i = 0; i < numRealms; i++ )
			{
				if( usableProvs.Count == 0 )
					break;

				int id = m_options.Random.Next( usableProvs.Count );

				prov = usableProvs[id];
				usableProvs.Remove( prov );

				#region Filtering
				//Province doesn't have associated title.
				if( prov.Title == null || !m_options.Data.Counties.ContainsKey( prov.Title ) )
				{
					i--;
					m_log.Log( String.Format( "Province {0}-{1}: Title ID is null or doesn't exist.", prov.ID, prov.Title ),
							   Logger.LogType.Error );
					continue;
				}

				if( prov.Culture == null || prov.Religion == null ||
					!m_options.Data.ContainsCulture( prov.Culture ) ||
					!m_options.Data.Religions.ContainsKey( prov.Religion ) )
				{
					i--;
					m_log.Log( String.Format( "Province {0}-{1}: Culture or religion is null or doesn't exist. {2}, {3}",
											  prov.ID, prov.Title, prov.Culture, prov.Religion ),
							   Logger.LogType.Error );
					continue;
				}
				#endregion

				Log( "Title " + prov.Title );

				// Need to handle chance of liege culture and religion.	
				if( liege != null && m_options.Random.Next( 100 ) <= m_options.RuleSet.LiegeCultureChance )
					provCul = m_options.Data.GetCulture( liege.Culture );
				else
					provCul = m_options.Data.GetCulture( prov.Culture );

				if( liege != null && m_options.Random.Next( 100 ) > m_options.RuleSet.LiegeReligionChance )
					provRel = m_options.Data.Religions[liege.Religion];
				else
					provRel = m_options.Data.Religions[prov.Religion];

				CharacterOption co = new CharacterOption();
				co.Culture = provCul;
				co.SpecifiedCulture = true;
				co.Religion = provRel;
				co.SpecifiedReligion = true;
				co.IsSpouse = false;
				co.Gender = RuleSet.Gender.Random;

				chars = CreateRandomCharacter( co, m_availDynasties, true );

				prov.CustomFlags["charOwned"] = true;
				prov.CustomFlags["charOwner"] = chars[0].ID;
				provsOwnedByChar = new List<Province>();
				provsOwnedByChar.Add( prov );

				chars[0].CustomFlags["provs"] = provsOwnedByChar;
				chars[0].CustomFlags["duchies"] = new List<Title>();
				chars[0].CustomFlags["kingdoms"] = new List<Title>();
				chars[0].CustomFlags["neighbours"] = new List<int>();

				chars[0].CustomFlags["realmDuchies"] = new List<Title>();

				chars[0].CustomFlags["VassalCount"] = 0;
				chars[0].CustomFlags["Liege"] = liege;
				chars[0].CustomFlags["Tier"] = TitleTier.Count;

				owners.Add( chars[0] );
				if( chars.Count == 2 )
					m_spouses.Add( chars[1] );
			}

			return owners;
		}
Пример #11
0
		private void CreatePatritians( StreamWriter titleWriter, string liege, int id, string culture, string religion )
		{
			int numPat = m_options.Random.Next( 2, 5 );
			List<Character> chars;
			Log( string.Format( " --Creating {0} Patricians", numPat ) );
			for( int i = 1; i <= numPat; i++ )
			{
				Log( string.Format( "   --Patrician {0}:", i ) );

				string name = GetFamilyHoldingName( id + i );
				Log( String.Format( "     Holding: {0}", name ) );

				CharacterOption co = new CharacterOption();
				co.Culture = m_options.Data.GetCulture( culture );
				co.SpecifiedCulture = true;
				co.Religion = m_options.Data.Religions[religion];
				co.SpecifiedReligion = true;
				co.Gender = RuleSet.Gender.Male;
				co.IsSpouse = false;

				chars = CreateRandomCharacter( co, m_availDynasties, false );
				foreach( Character c in chars )
					WriteCharacter( m_charWriter, c );
				Log( String.Format( "     ID: {0}", chars[0].ID ) );

				//Title definition.
				titleWriter.WriteLine( name + " = {" );
				titleWriter.WriteLine( "\tculture = " + culture );
				titleWriter.WriteLine( "\treligion = " + religion );
				titleWriter.WriteLine( "}" );

				//Title history
				string titlePath = Path.Combine( m_options.Data.MyDocsDir.FullName, m_options.Mod.Path );
				titlePath = Path.Combine( titlePath, "history/titles/" + name + ".txt" ).Replace( '\\', '/' );
				using( StreamWriter sw = new StreamWriter( titlePath, false, Encoding.GetEncoding( 1252 ) ) )
				{
					DateTime outDate = chars[0].Events[0].Date.AddDays( 1 );

					sw.Write( outDate.Year + "." + outDate.Month );
					sw.WriteLine( "." + outDate.Day + "= {" );
					sw.WriteLine( "\tholding_dynasty = " + chars[0].Dynasty );
					sw.WriteLine( "\tliege = \"" + liege + "\"" );
					sw.WriteLine( "\tholder = " + chars[0].ID.ToString() );
					sw.WriteLine( "}" );
				}
			}
		}
Пример #12
0
		private void MakeRepublicChars( List<Character> owners, int reps )
		{
			// Get list of coastal provinces.
			List<Province> provs = m_unownedProvs.Where( p => p.IsCoastal ).ToList();
			Province prov;
			List<Province> provsOwnedByChar;
			List<Character> chars;
			Culture provCul;
			Religion provRel;

			for( int i = 0; i < reps; i++ )
			{
				if( provs.Count == 0 )
					break;

				int id = m_options.Random.Next( provs.Count );
				prov = provs[id];
				provs.Remove( prov );
				m_unownedProvs.Remove( prov );

				#region Filtering
				//Province doesn't have associated title.
				if( prov.Title == null || !m_options.Data.Counties.ContainsKey( prov.Title ) )
				{
					i--;
					m_log.Log( String.Format( "Province {0}-{1}: Title ID is null or doesn't exist.", prov.ID, prov.Title ),
							   Logger.LogType.Error );
					continue;
				}

				if( prov.Culture == null || prov.Religion == null ||
					!m_options.Data.ContainsCulture( prov.Culture ) ||
					!m_options.Data.Religions.ContainsKey( prov.Religion ) )
				{
					i--;
					m_log.Log( String.Format( "Province {0}-{1}: Culture or religion is null or doesn't exist. {2}, {3}",
											  prov.ID, prov.Title, prov.Culture, prov.Religion ),
							   Logger.LogType.Error );
					continue;
				}
				#endregion

				provRel = m_options.Data.Religions[prov.Religion];
				provCul = m_options.Data.GetCulture( prov.Culture );

				Log( "Title " + prov.Title );

				CharacterOption co = new CharacterOption();
				co.Culture = provCul;
				co.SpecifiedCulture = true;
				co.Religion = provRel;
				co.SpecifiedReligion = true;
				co.IsSpouse = false;
				co.Gender = RuleSet.Gender.Male;

				chars = CreateRandomCharacter( co, m_availDynasties, true );

				chars[0].CustomFlags["duchies"] = new List<Title>();
				chars[0].CustomFlags["kingdoms"] = new List<Title>();
				chars[0].CustomFlags["isRep"] = true;
				chars[0].CustomFlags["neighbours"] = new List<int>();
				chars[0].CustomFlags["Liege"] = null;
				chars[0].CustomFlags["Tier"] = TitleTier.Count;

				prov.CustomFlags["charOwned"] = true;
				prov.CustomFlags["charOwner"] = chars[0].ID;

				provsOwnedByChar = new List<Province>();
				chars[0].CustomFlags["provs"] = provsOwnedByChar;
				provsOwnedByChar.Add( prov );

				owners.Add( chars[0] );
				if( chars.Count == 2 )
					m_spouses.Add( chars[1] );
			}
		}