KiCad PCB EDA Suite
Loading...
Searching...
No Matches
BOARD_CONSTRAINT_SESSION Class Reference

One editing session over a constraint cluster. More...

#include <board_constraint_adapter.h>

Inheritance diagram for BOARD_CONSTRAINT_SESSION:
BOARD_CONSTRAINT_DRAG_SESSION BOARD_CONSTRAINT_MOVE_SESSION

Public Member Functions

bool HasBaseConflict () const
 

Protected Member Functions

bool buildCluster (BOARD *aBoard, const std::unordered_set< KIID > &aClusterShapes, const std::vector< PCB_CONSTRAINT * > &aConstraints)
 Assemble the adapter for one cluster and record its baseline.
 
void reset ()
 Drop the built cluster, leaving the session unusable until the next successful build.
 
bool usable () const
 
bool rewind ()
 Rewind to the state the next speculative solve starts from.
 
SNAP_RESULT startResult (const SNAP_SOURCE_CONTEXT &aContext) const
 Seed a snap result at the cursor, rejecting a cluster that was already broken.
 

Static Protected Member Functions

static void accept (SNAP_RESULT &aResult, const SNAP_CANDIDATE &aCandidate, double aResidual)
 Record one candidate the session honoured.
 

Protected Attributes

BOARDm_board = nullptr
 
std::unique_ptr< BOARD_CONSTRAINT_ADAPTERm_adapter
 
BOARD_CONSTRAINT_ADAPTER::SNAPSHOT m_baseline
 
bool m_baseConflict = false
 

Detailed Description

One editing session over a constraint cluster.

The session owns the cluster's adapter plus the baseline it rewinds to. Speculative solves always run from the baseline and restore it, so the board changes only when the caller applies a result. Subclasses differ in what they drag and how they judge a candidate; everything about owning and rewinding the cluster is here.

Definition at line 385 of file board_constraint_adapter.h.

Member Function Documentation

◆ accept()

void BOARD_CONSTRAINT_SESSION::accept ( SNAP_RESULT & aResult,
const SNAP_CANDIDATE & aCandidate,
double aResidual )
staticprotected

Record one candidate the session honoured.

Only the residual and the freedom consumed belong here. SNAP_RESOLVER appends the id and the guides to whatever a feasibility callback returns, so reporting them again would draw every guide twice and enter the id in the sticky set twice.

Definition at line 2806 of file board_constraint_adapter.cpp.

References SNAP_CANDIDATE::consumedDof, SNAP_RESULT::quantizedResiduals, and SNAP_RESULT::remainingDof.

Referenced by BOARD_CONSTRAINT_DRAG_SESSION::ResolveCandidates(), and BOARD_CONSTRAINT_MOVE_SESSION::ResolveCandidates().

◆ buildCluster()

bool BOARD_CONSTRAINT_SESSION::buildCluster ( BOARD * aBoard,
const std::unordered_set< KIID > & aClusterShapes,
const std::vector< PCB_CONSTRAINT * > & aConstraints )
protected

Assemble the adapter for one cluster and record its baseline.

Sets the base-conflict flag when the cluster's relations were already unsatisfied, which every solve then refuses rather than trying to repair an edit the user did not make.

Definition at line 2767 of file board_constraint_adapter.cpp.

References m_adapter, m_baseConflict, m_baseline, m_board, reset(), resolveClusterDimensions(), and resolveClusterShapes().

Referenced by BOARD_CONSTRAINT_DRAG_SESSION::Build(), and BOARD_CONSTRAINT_MOVE_SESSION::Build().

◆ HasBaseConflict()

bool BOARD_CONSTRAINT_SESSION::HasBaseConflict ( ) const
inline

Definition at line 388 of file board_constraint_adapter.h.

References m_baseConflict.

◆ reset()

void BOARD_CONSTRAINT_SESSION::reset ( )
protected

Drop the built cluster, leaving the session unusable until the next successful build.

Definition at line 2759 of file board_constraint_adapter.cpp.

References m_adapter, m_baseConflict, and m_baseline.

Referenced by BOARD_CONSTRAINT_DRAG_SESSION::Build(), BOARD_CONSTRAINT_MOVE_SESSION::Build(), and buildCluster().

◆ rewind()

◆ startResult()

SNAP_RESULT BOARD_CONSTRAINT_SESSION::startResult ( const SNAP_SOURCE_CONTEXT & aContext) const
protected

Seed a snap result at the cursor, rejecting a cluster that was already broken.

Definition at line 2792 of file board_constraint_adapter.cpp.

References BASE_CONFLICT, INCOMPATIBLE, m_adapter, m_baseConflict, result, and SNAP_SOURCE_CONTEXT::sourcePoint.

Referenced by BOARD_CONSTRAINT_DRAG_SESSION::ResolveCandidates(), and BOARD_CONSTRAINT_MOVE_SESSION::ResolveCandidates().

◆ usable()

bool BOARD_CONSTRAINT_SESSION::usable ( ) const
inlineprotected

Member Data Documentation

◆ m_adapter

◆ m_baseConflict

bool BOARD_CONSTRAINT_SESSION::m_baseConflict = false
protected

◆ m_baseline

BOARD_CONSTRAINT_ADAPTER::SNAPSHOT BOARD_CONSTRAINT_SESSION::m_baseline
protected

◆ m_board

BOARD* BOARD_CONSTRAINT_SESSION::m_board = nullptr
protected

The documentation for this class was generated from the following files: