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, IMCodeDeclarationConfig, IToolChangeTriggerConfig, 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
EffectiveMCodeDeclarations
The declaration view the consumers resolve against (IMCodeDeclarationConfig and TryGetMCodeEffects(string, out MCodeEffects)/TryResolveDirection(string, out SpindleDirection)). Defaults to MCodeDeclarations verbatim; a brand subclass overrides it to overlay declarations mandated by its own machine data (e.g. the Siemens MD22560 tool-change M function) without writing them into the stored dictionary — the stored declarations, XML, and clones stay derivation-free and the overlay re-derives on every read.
protected virtual IReadOnlyDictionary<string, MCodeEffects> EffectiveMCodeDeclarations { 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>>
MCodeDeclarations
Declared machine M-codes and their effects — the single storage
behind both IMCodeDeclarationConfig and the narrower
ISpindleControlConfig face, so one code is never
half-recognized by two separate maps. Key = M-code as parsed
(e.g., “M13”), case-insensitive. Serialized as
<MCode> elements (spindle-direction-only entries keep
the legacy <SpindleMCode> element for older readers).
public Dictionary<string, MCodeEffects> MCodeDeclarations { get; set; }
Property Value
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
Spindle-direction view over MCodeDeclarations: every declared code that carries a SpindleDirection. See ISpindleControlConfig.
public IReadOnlyDictionary<string, SpindleDirection> SpindleDirectionCodes { get; }
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
ToolWordTriggersChange
When true, a T word performs the tool change by itself
(turret/lathe semantics — Siemens MD22550
$MC_TOOL_CHANGE_MODE = 0). Default false: T only
pre-selects; the trigger M-code changes the tool.
See IToolChangeTriggerConfig. Virtual so a brand
subclass can defer to its own machine data when that carries the
same semantics (the Siemens table consults MD22550 when present).
public virtual bool ToolWordTriggersChange { 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, MCodeDeclarations, and
ToolWordTriggersChange into
target, replacing the target's dictionaries with
independent copies (outer and inner buckets; declaration entries cloned).
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.
DeclareMCode(string, MCodeEffects)
Adds or replaces the declaration for an M-code. The effects are copied on store, so the caller may reuse or further mutate its instance without coupling declarations to each other.
public void DeclareMCode(string mCode, MCodeEffects effects)
Parameters
mCodestringeffectsMCodeEffects
DescribeAxisParam(int)
Per-axis double counterpart of DescribeSystemParam(int). Covers the role ids the base class consumes (reference position, rapid rate, stroke limits); brand subclasses may override for their own vocabulary or extra numbers.
public virtual string DescribeAxisParam(int paramId)
Parameters
paramIdintBrand-specific parameter/MD/MP number.
Returns
DescribeIntAxisParam(int)
Per-axis integer counterpart of DescribeSystemParam(int). Covers the axis-type id the base class consumes.
public virtual string DescribeIntAxisParam(int paramId)
Parameters
paramIdintBrand-specific parameter/MD/MP number.
Returns
DescribeSystemParam(int)
Short usage label for a well-known system parameter id, or null when the id has no modeled meaning (a raw pass-through row). Brand subclasses extend this with their own well-known numbers; the native parameter UI shows the label next to the raw id so an operator can tell the modeled parameters from free extras.
public virtual string DescribeSystemParam(int paramId)
Parameters
paramIdintBrand-specific parameter/MD/MP number.
Returns
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
RemoveMCodeDeclaration(string)
Removes the declaration for an M-code.
public void RemoveMCodeDeclaration(string mCode)
Parameters
mCodestring
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
TryGetMCodeEffects(string, out MCodeEffects)
Resolves a parsed flag to its declared effects. Returns false for undeclared codes — ISO defaults are the consumers' concern, not this config's. The returned instance is the live declaration: treat it as read-only and reconfigure through DeclareMCode(string, MCodeEffects) instead of mutating it.
public bool TryGetMCodeEffects(string mCode, out MCodeEffects effects)
Parameters
mCodestringeffectsMCodeEffects
Returns
TryResolveDirection(string, out SpindleDirection)
Resolves a parsed flag to a spindle direction. Returns true only for configured custom codes whose declaration carries no other effect — the caller consumes the whole flag for this one meaning, so a composite declaration (e.g. spindle + coolant) must instead be expanded by MCodeExpansionSyntax to keep its other halves alive. 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.