mirror of
https://github.com/supleed2/ELEC60015-HLP-CW.git
synced 2024-11-12 19:15:50 +00:00
Final Changes to Individual Code Submission.
This commit is contained in:
parent
fba1222d27
commit
c6e5381f61
|
@ -1,8 +1,8 @@
|
||||||
# Example README for individual code submission
|
# README for individual code submission - GV319
|
||||||
|
|
||||||
## Admin and quick access links
|
## Admin and quick access links
|
||||||
|
|
||||||
*link to your teamN.md file*
|
Link to:
|
||||||
[Common repo Team 6 file](https://github.com/tomcl/hlp22docs/blob/main/Team6.md)
|
[Common repo Team 6 file](https://github.com/tomcl/hlp22docs/blob/main/Team6.md)
|
||||||
|
|
||||||
Link to altered files:
|
Link to altered files:
|
||||||
|
@ -11,30 +11,24 @@ Link to altered files:
|
||||||
* [Renderer (Section 2)](src/Renderer/Renderer.fs)
|
* [Renderer (Section 2)](src/Renderer/Renderer.fs)
|
||||||
|
|
||||||
I am responsible for making the following changes in my code:
|
I am responsible for making the following changes in my code:
|
||||||
* __Symbol.fs:__ Lines : 718-1315 (Section 2) and Lines : 97-102 (stransform_fsm)
|
* __Symbol.fs:__
|
||||||
- Includes changes to existing code for Section 2 and new functions implementing the extensions.
|
Includes changes to existing code for Section 2 and new functions implementing the extensions.
|
||||||
* __Sheet.fs:__ Lines 86, 859-863 (Extensions)
|
* Lines : 718-1315 (Section 2)
|
||||||
- Includes changes required to make extensions for rotation work.
|
* Lines : 97-102 (stransform_fsm)
|
||||||
* __Renderer.fs:__ Lines 151 (Extensions)
|
* __Sheet.fs:__
|
||||||
- Includes changes required to make extensions for UI rotation work.
|
Includes changes required to make extensions for rotation work.
|
||||||
|
* Lines 86, 859-863 (Extensions)
|
||||||
## Code Quality
|
* __Renderer.fs:__
|
||||||
Things to note:
|
Includes changes required to make extensions for UI rotation work.
|
||||||
* Naming of `myGoodName`, `myWonderfulLongName`
|
* Lines: 151 (Extensions)
|
||||||
* New function boundaries: `topfun` -> `firstfun`, `topfun` -> `secondFun`
|
|
||||||
* New types: MyGoodType
|
|
||||||
* Helper function `myHelper` which is higher order and really helpful
|
|
||||||
* I cleaned up all the sprintf and printf statements to use interpolated strings
|
|
||||||
|
|
||||||
Your code will all be assessed anyway, so this is optional.
|
|
||||||
|
|
||||||
## Analysis
|
## Analysis
|
||||||
|
|
||||||
### Types
|
### Types
|
||||||
_The types decided in the first part of Symbol.fs were `STransform` of type `Rotation` and `PortOrientationOffset` of type {`PortOrientation`,`Offset`} each with its four possible cases to be used to describe
|
The types decided in the first part of Symbol.fs were `STransform` of type `Rotation: R0, R90, R180, R270` and `PortOrientationOffset` of type {`PortOrientation: Right, Bottom, Left, Top`,`Offset: XYPos`} to be used to describe
|
||||||
the different rotations fo the symbol and the side of the symbol its ports are at each rotation._
|
the different rotations fo the symbol and the side of the symbol its ports are at each rotation.
|
||||||
_`APortOffsetsMap` of type `Map<string,PortOrientationOffset>` was used to describe the port locations relative to the top left corner of the symbol.
|
`APortOffsetsMap` of type `Map<string,PortOrientationOffset>` was used to describe the port locations relative to the top left corner of the symbol.
|
||||||
This map uses string keys `I0..IN` and `O0..ON` to correctly distinguish and store the input and output port offsets in the map._
|
This map uses string keys `I0..IN` and `O0..ON`, mapped in this order, to correctly distinguish and store the input and output port offsets in the map.
|
||||||
|
|
||||||
### Changes to pre-existing code
|
### Changes to pre-existing code
|
||||||
|
|
||||||
|
@ -70,8 +64,8 @@ The code demonstrated in the 5 minute feedback will be to:
|
||||||
## 1. Locate port position and orientation, given symbol position and orientation
|
## 1. Locate port position and orientation, given symbol position and orientation
|
||||||
### Changes in files:
|
### Changes in files:
|
||||||
- __Symbol.fs__
|
- __Symbol.fs__
|
||||||
- `743-748`canvasPortLocation
|
- `canvasPortLocation` (Lines: 743-748)
|
||||||
- `753-761` getGlobalPortPos
|
- `getGlobalPortPos` (Lines: 753-761)
|
||||||
|
|
||||||
### Explanation:
|
### Explanation:
|
||||||
Functions `canvasPortLocation` and `getGlobalPortPos` were created to produce the "Global" Coordinates of the ports
|
Functions `canvasPortLocation` and `getGlobalPortPos` were created to produce the "Global" Coordinates of the ports
|
||||||
|
@ -94,15 +88,15 @@ to `buswire.fs` to ensure that the wires are correctly displayed during rotation
|
||||||
## 2. UI to rotate symbol
|
## 2. UI to rotate symbol
|
||||||
### Changes in files:
|
### Changes in files:
|
||||||
- __Symbol.fs__
|
- __Symbol.fs__
|
||||||
- `1164-1173` RotateSymbols compList
|
- `RotateSymbols compList` (Lines: 1164-1173)
|
||||||
|
|
||||||
- __Sheet.fs__
|
- __Sheet.fs__
|
||||||
- `86` Type KeyboardMsg Rotate
|
- `Type KeyboardMsg Rotate` (Lines: 86)
|
||||||
- `859-863` Keypress Rotate
|
- `Keypress Rotate` (Lines: 859-863)
|
||||||
|
|
||||||
|
|
||||||
- __Renderer.fs__
|
- __Renderer.fs__
|
||||||
- `151-152` makeItem "Rotate Symbol"
|
- `makeItem "Rotate Symbol` (Lines: 151-152)
|
||||||
### Explanation:
|
### Explanation:
|
||||||
The UI was altered to incorporate the use of symbol rotation. Thus was done by first altering the `Renderer.fs`. Line 151 was added
|
The UI was altered to incorporate the use of symbol rotation. Thus was done by first altering the `Renderer.fs`. Line 151 was added
|
||||||
to add the menu item "Rotate Symbol" in order to be able to rotate any symbol selected. This option was then linked through `Sheet.fs`
|
to add the menu item "Rotate Symbol" in order to be able to rotate any symbol selected. This option was then linked through `Sheet.fs`
|
||||||
|
@ -118,12 +112,12 @@ function in this case to print the global port locations as explained previously
|
||||||
The above can be fully tested by selecting a symbol on the canvas and pressing either `Shift+R` or `View > Rotate Symbol`.
|
The above can be fully tested by selecting a symbol on the canvas and pressing either `Shift+R` or `View > Rotate Symbol`.
|
||||||
The "Global" port coordinates of the selected symbol will also appear in the console if Developer Tools are toggled on.
|
The "Global" port coordinates of the selected symbol will also appear in the console if Developer Tools are toggled on.
|
||||||
|
|
||||||
### 3. Make symbol bounding box work with rotation
|
## 3. Make symbol bounding box work with rotation
|
||||||
### Changes in files:
|
### Changes in files:
|
||||||
- __Symbol.fs__
|
- __Symbol.fs__
|
||||||
- `724-727` getBoundingBoxofSymbol
|
- `getBoundingBoxofSymbol` (Lines: 724-727)
|
||||||
- `728-729` getBoundingBoxes
|
- `getBoundingBoxes` (Lines: 728-729)
|
||||||
- `730-731` getOneBoundingBox
|
- `getOneBoundingBox` (Lines: 730-731)
|
||||||
|
|
||||||
### Explanation:
|
### Explanation:
|
||||||
The function `getBoundingBoxofSymbol` was updated to correctly alter the bounding box border of each symbol by taking into account
|
The function `getBoundingBoxofSymbol` was updated to correctly alter the bounding box border of each symbol by taking into account
|
||||||
|
|
Loading…
Reference in a new issue