Skip to content

Instantly share code, notes, and snippets.

@techninja
Last active July 5, 2020 18:24
Show Gist options
  • Save techninja/d31f37fc16141e7b5f5c3f4ea69d63fe to your computer and use it in GitHub Desktop.
Save techninja/d31f37fc16141e7b5f5c3f4ea69d63fe to your computer and use it in GitHub Desktop.
Remaining TODOs for CNCServer on the path to v3

Current TODOs for CNCServer on the path to v3

Render pipeline

  • Make a hash data attached to each render target within the render grouping for the item.
  • With hash against each settings item on the final, (plus width/height), should prevent re-renders when needed
  • Allow moving of stage item (bounds change, but w/h don't) to move rendered group.
  • Raster: Get resolution size down working for big images (calculate DPI from bounds scale).
  • Pass cncserver specific tmp dir over as part of filler/vectorizer utils so we don't need that in implementors.

Documentation

  • Need API documentation, examples for every single endpoint and its expected variants and errors
  • Show API data schema and how to read it
  • Document visually how to use the default UI to do basic to advanced things

Progress indication

  • Need to overhaul server progress to be hash based with standarized data transfer via sockets:
    • Import status, Render status: Vectorize, fill, stroke. Print status: Render to bot, total print progress, specific item status (filling this item, est Time till next color).
  • Need to create a system for relaying progress updates to the user, with individual and combined progress.

File I/O

  • Prevent broken projects from importing
  • On project delete, if open, default to empty project.
  • Prevent invalid content settings (force valdiator/default).

API/APP examples

  • Rebuild old demos into API demos hosted on github.io
  • Something with the AI drawing set.
  • Something 3d?
  • Clock using stroke fonts with demo video on buddhaboard?

Testing Coverage

  • UI testing and content output matching for all source content types.
  • Serial message match testing for accel?

General

  • Split UI into "Composing" and "Printing" contexts
  • Project previews should be raster PNG limited resolution renders, SVGs carry full resolution sources
  • Why aren't mona lisa's eyes rendering?!
  • Dark mode default based on intent, with switch. (CSS variables)
  • Save and load rendered content (through SVG??).

Composing UI

  • Contains project load, edit, stage, render preview
  • No printing or bot related things.
  • Only send image PATH for local placement (rasters only)
  • Limit the number of render settings tabs to just the ones that matter for the given item (no text options for SVG, or raster).
  • Range options in settings need far smaller steps.
  • Stretch goal: Allow for showing which fields have values, and have a button for reverting overrides.

Printing UI

  • Contains bot controls, height settings, no editing.
  • Simplified project loader for easy re-print
  • Simplify method for changing out colorsets

Colorsets

  • Add support for completing line width:
    • Colorset group default width, individual entry width
    • Type dropdown (Pen/Brush)
    • Ranged width (brushes)
    • Properly set line width based on colorset implement
  • Vastly improve interface for use in either printing or composing context
  • Attach colorsets to projects
  • Allow naming of colorsets with info.
  • Save changes as new to user dir. IN loading differentiate custom and default sets.

Installation

  • Nullsoft Installer with driver install for Win
  • Add configuration section for what port?
  • Find some kind of low level native tray application framework? Needs to be small.
  • Package with node executable?? Demand people install node?

Translation

  • Only start this after the UI is locked down:
    • Get a list of translation strings
    • Add to main translation interface.

Printing

  • Improve accell code and provide some method of adjusting settings.
  • Validate that WCB process is actually working and can print pencil example.
@techninja
Copy link
Author

This is just a mess of notes to myself about what is needed before v3, in addition to what we have over on the project board. This is a TON of work to get to this finish line, but I know it's possible. All work so far is pushed to the v3 branch and is mostly working, warts and all.

@techninja
Copy link
Author

Oh, I forgot "Documentation":

  • Need API documentation, examples for every single endpoint and its expected variants and errors
  • Show API data schema and how to read it
  • Document how to use the default UI to do basic to advanced things
  • ...?

@techninja
Copy link
Author

Implement Symantec Releases from 3.0.0+! https://github.com/patrickocoffeyo/semantic-release

@techninja
Copy link
Author

All of this has been moved over here: https://github.com/techninja/cncserver/projects/1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment