2023-10-16 21:20:05 +11:00
|
|
|
import { toolTips } from '../../useStore'
|
|
|
|
import { Selections } from 'lib/selections'
|
2023-10-16 08:54:38 +11:00
|
|
|
import { BinaryPart, Program, Value } from '../../lang/wasm'
|
2023-04-05 15:08:46 +10:00
|
|
|
import {
|
|
|
|
getNodePathFromSourceRange,
|
|
|
|
getNodeFromPath,
|
|
|
|
} from '../../lang/queryAst'
|
|
|
|
import {
|
|
|
|
getTransformInfos,
|
|
|
|
transformAstSketchLines,
|
2023-10-16 08:54:38 +11:00
|
|
|
PathToNodeMap,
|
2024-06-24 11:45:40 -04:00
|
|
|
TransformInfo,
|
2023-04-05 15:08:46 +10:00
|
|
|
} from '../../lang/std/sketchcombos'
|
2023-10-16 08:54:38 +11:00
|
|
|
import {
|
|
|
|
SetAngleLengthModal,
|
|
|
|
createSetAngleLengthModal,
|
|
|
|
} from '../SetAngleLengthModal'
|
2023-04-06 12:45:56 +10:00
|
|
|
import {
|
|
|
|
createIdentifier,
|
|
|
|
createVariableDeclaration,
|
|
|
|
} from '../../lang/modifyAst'
|
2023-04-05 15:08:46 +10:00
|
|
|
import { removeDoubleNegatives } from '../AvailableVarsHelpers'
|
2024-03-22 16:55:30 +11:00
|
|
|
import { kclManager } from 'lib/singletons'
|
2024-06-24 11:45:40 -04:00
|
|
|
import { err } from 'lib/trap'
|
2023-04-05 15:08:46 +10:00
|
|
|
|
2023-10-16 08:54:38 +11:00
|
|
|
const getModalInfo = createSetAngleLengthModal(SetAngleLengthModal)
|
2023-09-16 01:23:11 -04:00
|
|
|
|
2023-10-16 08:54:38 +11:00
|
|
|
type Constraint = 'xAbs' | 'yAbs' | 'snapToYAxis' | 'snapToXAxis'
|
2023-09-16 01:23:11 -04:00
|
|
|
|
2023-10-16 08:54:38 +11:00
|
|
|
export function absDistanceInfo({
|
|
|
|
selectionRanges,
|
|
|
|
constraint,
|
|
|
|
}: {
|
|
|
|
selectionRanges: Selections
|
|
|
|
constraint: Constraint
|
2024-06-24 11:45:40 -04:00
|
|
|
}):
|
|
|
|
| {
|
|
|
|
transforms: TransformInfo[]
|
|
|
|
enabled: boolean
|
|
|
|
}
|
|
|
|
| Error {
|
2023-10-16 08:54:38 +11:00
|
|
|
const disType =
|
|
|
|
constraint === 'xAbs' || constraint === 'yAbs'
|
|
|
|
? constraint
|
|
|
|
: constraint === 'snapToYAxis'
|
2023-04-06 12:45:56 +10:00
|
|
|
? 'xAbs'
|
|
|
|
: 'yAbs'
|
2023-10-16 08:54:38 +11:00
|
|
|
const paths = selectionRanges.codeBasedSelections.map(({ range }) =>
|
|
|
|
getNodePathFromSourceRange(kclManager.ast, range)
|
|
|
|
)
|
2024-06-24 11:45:40 -04:00
|
|
|
const _nodes = paths.map((pathToNode) => {
|
|
|
|
const tmp = getNodeFromPath<Value>(
|
|
|
|
kclManager.ast,
|
|
|
|
pathToNode,
|
|
|
|
'CallExpression'
|
|
|
|
)
|
|
|
|
if (err(tmp)) return tmp
|
|
|
|
return tmp.node
|
|
|
|
})
|
|
|
|
const _err1 = _nodes.find(err)
|
|
|
|
if (err(_err1)) return _err1
|
|
|
|
const nodes = _nodes as Value[]
|
|
|
|
|
2023-10-16 08:54:38 +11:00
|
|
|
const isAllTooltips = nodes.every(
|
|
|
|
(node) =>
|
|
|
|
node?.type === 'CallExpression' &&
|
|
|
|
toolTips.includes(node.callee.name as any)
|
|
|
|
)
|
2023-04-05 15:08:46 +10:00
|
|
|
|
2023-10-16 08:54:38 +11:00
|
|
|
const transforms = getTransformInfos(selectionRanges, kclManager.ast, disType)
|
2024-06-24 11:45:40 -04:00
|
|
|
if (err(transforms)) return transforms
|
2023-10-16 08:54:38 +11:00
|
|
|
|
|
|
|
const enableY =
|
|
|
|
disType === 'yAbs' &&
|
|
|
|
selectionRanges.otherSelections.length === 1 &&
|
|
|
|
selectionRanges.otherSelections[0] === 'x-axis' // select the x axis to set the distance from it i.e. y
|
|
|
|
const enableX =
|
|
|
|
disType === 'xAbs' &&
|
|
|
|
selectionRanges.otherSelections.length === 1 &&
|
|
|
|
selectionRanges.otherSelections[0] === 'y-axis' // select the y axis to set the distance from it i.e. x
|
2023-04-05 15:08:46 +10:00
|
|
|
|
2023-10-16 08:54:38 +11:00
|
|
|
const enabled =
|
|
|
|
isAllTooltips &&
|
|
|
|
transforms.every(Boolean) &&
|
|
|
|
selectionRanges.codeBasedSelections.length === 1 &&
|
|
|
|
(enableX || enableY)
|
|
|
|
|
|
|
|
return { enabled, transforms }
|
|
|
|
}
|
2023-04-05 15:08:46 +10:00
|
|
|
|
2023-10-16 08:54:38 +11:00
|
|
|
export async function applyConstraintAbsDistance({
|
|
|
|
selectionRanges,
|
|
|
|
constraint,
|
|
|
|
}: {
|
|
|
|
selectionRanges: Selections
|
|
|
|
constraint: 'xAbs' | 'yAbs'
|
|
|
|
}): Promise<{
|
|
|
|
modifiedAst: Program
|
|
|
|
pathToNodeMap: PathToNodeMap
|
|
|
|
}> {
|
2024-06-24 11:45:40 -04:00
|
|
|
const info = absDistanceInfo({
|
2023-10-16 08:54:38 +11:00
|
|
|
selectionRanges,
|
|
|
|
constraint,
|
2024-06-24 11:45:40 -04:00
|
|
|
})
|
|
|
|
if (err(info)) return Promise.reject(info)
|
|
|
|
const transformInfos = info.transforms
|
|
|
|
|
|
|
|
const transform1 = transformAstSketchLines({
|
2023-10-16 08:54:38 +11:00
|
|
|
ast: JSON.parse(JSON.stringify(kclManager.ast)),
|
|
|
|
selectionRanges: selectionRanges,
|
|
|
|
transformInfos,
|
|
|
|
programMemory: kclManager.programMemory,
|
|
|
|
referenceSegName: '',
|
|
|
|
})
|
2024-06-24 11:45:40 -04:00
|
|
|
if (err(transform1)) return Promise.reject(transform1)
|
|
|
|
const { valueUsedInTransform } = transform1
|
|
|
|
|
2023-10-16 08:54:38 +11:00
|
|
|
let forceVal = valueUsedInTransform || 0
|
|
|
|
const { valueNode, variableName, newVariableInsertIndex, sign } =
|
|
|
|
await getModalInfo({
|
|
|
|
value: forceVal,
|
|
|
|
valueName: constraint === 'yAbs' ? 'yDis' : 'xDis',
|
|
|
|
})
|
|
|
|
let finalValue = removeDoubleNegatives(
|
|
|
|
valueNode as BinaryPart,
|
|
|
|
sign,
|
|
|
|
variableName
|
|
|
|
)
|
2023-04-05 15:08:46 +10:00
|
|
|
|
2024-06-24 11:45:40 -04:00
|
|
|
const transform2 = transformAstSketchLines({
|
2023-10-16 08:54:38 +11:00
|
|
|
ast: JSON.parse(JSON.stringify(kclManager.ast)),
|
|
|
|
selectionRanges: selectionRanges,
|
|
|
|
transformInfos,
|
|
|
|
programMemory: kclManager.programMemory,
|
|
|
|
referenceSegName: '',
|
|
|
|
forceValueUsedInTransform: finalValue,
|
|
|
|
})
|
2024-06-24 11:45:40 -04:00
|
|
|
if (err(transform2)) return Promise.reject(transform2)
|
|
|
|
const { modifiedAst: _modifiedAst, pathToNodeMap } = transform2
|
|
|
|
|
2023-10-16 08:54:38 +11:00
|
|
|
if (variableName) {
|
|
|
|
const newBody = [..._modifiedAst.body]
|
|
|
|
newBody.splice(
|
|
|
|
newVariableInsertIndex,
|
|
|
|
0,
|
|
|
|
createVariableDeclaration(variableName, valueNode)
|
|
|
|
)
|
|
|
|
_modifiedAst.body = newBody
|
2024-05-31 14:00:32 +10:00
|
|
|
Object.values(pathToNodeMap).forEach((pathToNode) => {
|
|
|
|
const index = pathToNode.findIndex((a) => a[0] === 'body') + 1
|
|
|
|
pathToNode[index][0] = Number(pathToNode[index][0]) + 1
|
|
|
|
})
|
2023-10-16 08:54:38 +11:00
|
|
|
}
|
|
|
|
return { modifiedAst: _modifiedAst, pathToNodeMap }
|
|
|
|
}
|
2023-04-06 12:45:56 +10:00
|
|
|
|
2023-10-16 08:54:38 +11:00
|
|
|
export function applyConstraintAxisAlign({
|
|
|
|
selectionRanges,
|
|
|
|
constraint,
|
|
|
|
}: {
|
|
|
|
selectionRanges: Selections
|
|
|
|
constraint: 'snapToYAxis' | 'snapToXAxis'
|
2024-06-24 11:45:40 -04:00
|
|
|
}):
|
|
|
|
| {
|
|
|
|
modifiedAst: Program
|
|
|
|
pathToNodeMap: PathToNodeMap
|
|
|
|
}
|
|
|
|
| Error {
|
|
|
|
const info = absDistanceInfo({
|
2023-10-16 08:54:38 +11:00
|
|
|
selectionRanges,
|
|
|
|
constraint,
|
2024-06-24 11:45:40 -04:00
|
|
|
})
|
|
|
|
if (err(info)) return info
|
|
|
|
const transformInfos = info.transforms
|
2023-04-05 15:08:46 +10:00
|
|
|
|
2024-02-11 18:26:09 -08:00
|
|
|
let finalValue = createIdentifier('ZERO')
|
2023-10-10 06:43:25 +11:00
|
|
|
|
2023-10-16 08:54:38 +11:00
|
|
|
return transformAstSketchLines({
|
|
|
|
ast: JSON.parse(JSON.stringify(kclManager.ast)),
|
|
|
|
selectionRanges: selectionRanges,
|
|
|
|
transformInfos,
|
|
|
|
programMemory: kclManager.programMemory,
|
|
|
|
referenceSegName: '',
|
|
|
|
forceValueUsedInTransform: finalValue,
|
|
|
|
})
|
2023-04-05 15:08:46 +10:00
|
|
|
}
|