Format adjustments for Prairie Island and Comanche Peak

Format adjustments for Comanche Peak
This commit is contained in:
John Jenko 2013-09-25 14:33:37 +00:00
parent e4698b5bc3
commit d59bc3a087
2 changed files with 90 additions and 0 deletions

View File

@ -130,6 +130,9 @@ namespace fmtxml
case "CPLRDEV.FMT":
AddCPLRDev(ref fmtdata);
break;
case "TUEC.FMT":
AddTuecfmt(ref fmtdata);
break;
}
}
private void AddFNPfmt(ref FormatData fmtdata)
@ -1516,6 +1519,9 @@ namespace fmtxml
case "CPLRDEV.PAG":
AddCPLRDevPage(ref pgstyles);
break;
case "TUEC.PAG":
AddTUECPage(ref pgstyles);
break;
/* Under Development
case "TP.PAG":
@ -2959,6 +2965,9 @@ namespace fmtxml
case "CPL.Y02":
AddCPL_Y02(ref dcstyles);
break;
case "TUEC.DOC":
AddTUCEDOC(ref dcstyles);
break;
}
}
@ -3296,6 +3305,7 @@ namespace fmtxml
dcstyles.DcStyles[1].ContStyle.FontFamily = "Arial";
dcstyles.DcStyles[1].ContStyle.FontSize = "11";
//Cover Page
dcstyles.DcStyles[2].pagestyle = 4;
dcstyles.DcStyles[2].dstyle.FontFamily = "Arial";
dcstyles.DcStyles[2].dstyle.FontSize = "11";
//Appendix Pages
@ -3431,6 +3441,9 @@ namespace fmtxml
case "CALOTO":
AddCALOTO(myDoc);
break;
case "TUEC":
AddTUEC(myDoc);
break;
}
}

View File

@ -0,0 +1,77 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
namespace fmtxml
{
public partial class FmtFileToXml
{
private void AddTuecfmt(ref FormatData fmtdata) // Comanche Peak
{
// High Level Step
fmtdata.StepData[2].TabData.Ident = " {numeric} ";
// Imediate Action High Level Step
fmtdata.StepData[3].TabData.Ident = "{!C0}{numeric} ";
// Caution
fmtdata.StepData[6].OneLineBeforeTab = "True";
// Note
fmtdata.StepData[7].OneLineBeforeTab = "True";
// Continuous Action High Level Step
fmtdata.StepData[9].TabData.Ident = "*{numeric} ";
// Caution 2
fmtdata.StepData[21].ParentType = "Base";
//fmtdata.SectData.StepSectionData.StpSectLayData.WidSTablePrint = "437,193,114";
//fmtdata.BoxData[1].End = 457; // caution box
}
//private void AddCPLOverridefmt(ref FormatData fmtdata)
//{
// fmtdata.BoxData[1].BXLLC = "-12345"; //this will put in a null string
// fmtdata.BoxData[1].BXULC = "-12345"; //this will put in a null string
// fmtdata.BoxData[1].BXVert = "-12345"; //this will put in a null string
// fmtdata.BoxData[1].BXURC = "-12345"; //this will put in a null string
// fmtdata.BoxData[1].BXULC = "-12345"; //this will put in a null string
//}
}
public partial class FmtToXml
{
private void AddTUECPage(ref PageStyles pgstyles)
{
// Procedure Steps
pgstyles.PgStyles[0].Items[2].Token = "UNIT {UNITNUMBER}";
// Cover Page
pgstyles.PgStyles[1].Items[3].Token = "UNIT {UNITNUMBER}";
// Cover Page with ECC Stamp
pgstyles.PgStyles[2].Items[3].Token = "UNIT {UNITNUMBER}";
// Introduction & Appendix Pages
pgstyles.PgStyles[3].Items[3].Token = "UNIT {UNITNUMBER}";
//Cover Page with Small Stamp
pgstyles.PgStyles[4].Items[3].Token = "UNIT {UNITNUMBER}";
}
private void AddTUCEDOC(ref DocStyles dcstyles)
{
// Cover Page
dcstyles.DcStyles[1].PageLength = 620;
// Cover Page with ECC Stamp
dcstyles.DcStyles[2].PageLength = 620;
// Introduction & Appendix Pages
dcstyles.DcStyles[3].PageLength = 640;
// Cover Page with Small Stamp
dcstyles.DcStyles[4].PageLength = 620;
}
}
public partial class RtfToSvg
{
private void AddTUEC(XmlDocument myDoc)
{
XmlDocument xdNew = new XmlDocument();
xdNew.LoadXml("<svg xmlns=\"http://www.w3.org/2000/svg\"> <g id=\"C0\">" +
"<ellipse cx=\"6\" cy=\"-3.2\" rx=\"11.1\" ry=\"11.1\" fill=\"none\" stroke=\"black\" stroke-width=\"1.9\" />" +
"</g></svg>");
myDoc.DocumentElement.ReplaceChild(myDoc.ImportNode(xdNew.DocumentElement.ChildNodes[0], true), myDoc.DocumentElement.ChildNodes[12]);
}
}
}