Class ControllerParameterTableBase
- Namespace
- Hi.NcParsers.Dependencys
- Assembly
- HiMech.dll
Base class for brand-specific controller parameter tables. Provides shared data structures, XML IO, and IHomeMcConfig
- IMachineAxisConfig implementations. Subclasses define brand-specific parameter numbers, XML attribute names, and derived convenience properties.
public abstract class ControllerParameterTableBase : IHomeMcConfig, IMachineAxisConfig, IRapidFeedrateConfig, IStrokeLimitConfig, ISpindleControlConfig, INcDependency, IMakeXmlSource
- Inheritance
-
ControllerParameterTableBase
- Implements
- Derived
- Inherited Members
- Extension Methods
Properties
AxisNames
Gets the configured axis names in order.
public IEnumerable<string> AxisNames { get; }
Property Value
AxisParams
Per-axis float parameters. Outer key = parameter number, inner key = axis name.
public Dictionary<int, Dictionary<string, double>> AxisParams { get; set; }
Property Value
AxisTypeParamId
Parameter/MD/MP number for axis type (linear/rotary/spindle).
protected abstract int AxisTypeParamId { get; }
Property Value
IdAttributeName
XML attribute name for the parameter ID (“ParamId”, “MdId”, “MpId”).
protected abstract string IdAttributeName { get; }
Property Value
IntAxisParams
Per-axis integer parameters. Outer key = parameter number, inner key = axis name.
public Dictionary<int, Dictionary<string, int>> IntAxisParams { get; set; }
Property Value
- Dictionary<int, Dictionary<string, int>>
RapidRateParamId
Parameter/MD/MP number for rapid traverse rate per axis. Null if not defined for this controller brand.
protected virtual int? RapidRateParamId { get; }
Property Value
- int?
ReferencePositionParamId
Parameter/MD/MP number for reference position (G28 home).
protected abstract int ReferencePositionParamId { get; }
Property Value
SpindleDirectionCodes
Custom spindle direction M-codes beyond the ISO defaults
(M03/M04/M05). Key = M-code as parsed (e.g., “M203”),
case-insensitive; value = resulting direction.
Serialized as <SpindleMCode> elements.
See ISpindleControlConfig.
public Dictionary<string, SpindleDirection> SpindleDirectionCodes { get; set; }
Property Value
StrokeLimitNegParamId
Parameter/MD/MP number for negative stroke limit per axis. Null if not defined for this controller brand.
protected virtual int? StrokeLimitNegParamId { get; }
Property Value
- int?
StrokeLimitPosParamId
Parameter/MD/MP number for positive stroke limit per axis. Null if not defined for this controller brand.
protected virtual int? StrokeLimitPosParamId { get; }
Property Value
- int?
SystemParams
System-wide parameters. Key = parameter number.
public Dictionary<int, double> SystemParams { get; set; }
Property Value
Methods
AxisParam(int)
Returns the per-axis float bucket for paramId, creating it if absent. See AxisParams.
public Dictionary<string, double> AxisParam(int paramId)
Parameters
paramIdintBrand-specific parameter/MD/MP number.
Returns
ConfigureRotaryAxis(string, double, double)
Configures a rotary axis with home position and rapid rate. Sets axis type to Rotary, home position via SetHomePosition(string, double), and per-axis rapid rate (if RapidRateParamId is defined for this brand). Use RemoveAxis(string) to remove the axis entirely.
public void ConfigureRotaryAxis(string axisName, double homePosition_deg = 0, double rapidRate_degdmin = 36000)
Parameters
axisNamestringAxis name (e.g., “A”, “B”, “C”).
homePosition_degdoubleHome position in degrees (default 0).
rapidRate_degdmindoubleRapid traverse rate in deg/min (default 36000).
ConfigureSpindleDirectionCode(string, SpindleDirection)
Adds or updates a custom spindle direction M-code.
public void ConfigureSpindleDirectionCode(string mCode, SpindleDirection direction)
Parameters
mCodestringdirectionSpindleDirection
CopyParamsTo(ControllerParameterTableBase)
Deep-copies this table's SystemParams, AxisParams,
IntAxisParams, and SpindleDirectionCodes into
target, replacing the target's dictionaries with
independent copies (outer and inner buckets).
Subclasses expose a typed DeepClone that constructs the concrete table
and calls this. Used by the parameter-table proxies to clone their fixed
machine-config seed into a host that has no table yet.
protected void CopyParamsTo(ControllerParameterTableBase target)
Parameters
targetControllerParameterTableBaseThe table to overwrite with deep copies of this table's parameters.
GetHomePosition(string)
Gets the home position for a specific axis. Returns null if the axis has no home position configured.
public double? GetHomePosition(string axisName)
Parameters
axisNamestring
Returns
GetLinearAxisRapidRate_mmdmin(string)
Gets rapid traverse feedrate for a linear axis in mm/min. Returns a default value if the axis is not configured.
public double GetLinearAxisRapidRate_mmdmin(string axisName)
Parameters
axisNamestring
Returns
GetNegativeLimit(string)
Gets the negative stroke limit for a specific axis. Unit is mm for linear axes, deg for rotary axes. Returns null if not configured (no limit).
public double? GetNegativeLimit(string axisName)
Parameters
axisNamestring
Returns
GetPositiveLimit(string)
Gets the positive stroke limit for a specific axis. Unit is mm for linear axes, deg for rotary axes. Returns null if not configured (no limit).
public double? GetPositiveLimit(string axisName)
Parameters
axisNamestring
Returns
GetRotaryAxisRapidRate_degdmin(string)
Gets rapid traverse feedrate for a rotary axis in deg/min. Returns a default value if the axis is not configured.
public double GetRotaryAxisRapidRate_degdmin(string axisName)
Parameters
axisNamestring
Returns
IntAxisParam(int)
Returns the per-axis integer bucket for paramId, creating it if absent. See IntAxisParams.
public Dictionary<string, int> IntAxisParam(int paramId)
Parameters
paramIdintBrand-specific parameter/MD/MP number.
Returns
IsRotaryAxis(string)
Returns true if the axis is rotary or spindle, false if linear.
public bool IsRotaryAxis(string axisName)
Parameters
axisNamestring
Returns
MakeXmlSource(string, string, bool)
Creates an XML representation of the object. This method may also generate additional resources such as related files.
public abstract XElement MakeXmlSource(string baseDirectory, string relFile, bool exhibitionOnly)
Parameters
baseDirectorystringThe base directory for resolving relative paths
relFilestringThe relative file path for the XML source
exhibitionOnlyboolif true, the extended file creation is suppressed.
Returns
- XElement
An XML element representing the object's state
Remarks
For the demand of easy moving source folder (especially project folder) without configuration file path corruption, the relative file path is applied.
The baseDirectory is typically the folder at the nearest configuration file folder.
Since the folder can be moving with the configuration file.
ReadXml(XElement)
Populates SystemParams, AxisParams, and IntAxisParams from src using the brand-specific IdAttributeName.
protected void ReadXml(XElement src)
Parameters
srcXElementXML element produced by WriteXml(string).
RemoveAxis(string)
Removes an axis from the configuration.
public void RemoveAxis(string axisName)
Parameters
axisNamestring
RemoveSpindleDirectionCode(string)
Removes a custom spindle direction M-code.
public void RemoveSpindleDirectionCode(string mCode)
Parameters
mCodestring
SetAxis(string, AxisType)
Adds or updates an axis with the specified type.
public void SetAxis(string axisName, AxisType type)
Parameters
SetHomePosition(string, double)
Sets the home position for a specific axis.
public void SetHomePosition(string axisName, double value)
Parameters
SetLinearAxisRapidRate_mmdmin(string, double)
Sets rapid traverse feedrate for a linear axis in mm/min.
public void SetLinearAxisRapidRate_mmdmin(string axisName, double value)
Parameters
SetNegativeLimit(string, double)
Sets the negative stroke limit for a specific axis. Unit is mm for linear axes, deg for rotary axes.
public void SetNegativeLimit(string axisName, double value)
Parameters
SetPositiveLimit(string, double)
Sets the positive stroke limit for a specific axis. Unit is mm for linear axes, deg for rotary axes.
public void SetPositiveLimit(string axisName, double value)
Parameters
SetRotaryAxisRapidRate_degdmin(string, double)
Sets rapid traverse feedrate for a rotary axis in deg/min.
public void SetRotaryAxisRapidRate_degdmin(string axisName, double value)
Parameters
TryResolveDirection(string, out SpindleDirection)
Resolves a parsed flag to a spindle direction. Returns true only for configured custom codes; ISO M03/M04/M05 defaults are the caller's fallback, not this config's concern.
public bool TryResolveDirection(string mCode, out SpindleDirection direction)
Parameters
mCodestringdirectionSpindleDirection
Returns
WriteXml(string)
Serializes SystemParams, AxisParams, and IntAxisParams into a new XElement. Inverse of ReadXml(XElement).
protected XElement WriteXml(string xName)
Parameters
xNamestringElement name for the produced XML element.