Skip to content

adamfoneil/Loomer

Repository files navigation

This is something my dad and I worked on together -- a virtual loom. My dad is into woodworking and other crafts, and he made is own loom years ago -- a big contraption as I remember, about half the width of an upright piano. A long time ago he wrote a program in BASIC to model what a loom does, when given various inputs about the color and configuration of yarn to produce a desired fabric pattern. We were trying to re-create this, as his original program is long gone. He had tried playing around with SmallBasic, but didn't get very far. I wanted to do it in C# of course as a WinForms app, since that's what I know.

img

A big challenge here is that I don't understand looms. My dad understands them deeply, but mainly in a mechanical way, not algorithmically. He kept using weaving jargon like harness and heddle, warp and weft. And I got particularly tripped up on concepts like "raising" and "lowering" harnesses. No matter how many times he tried to explain it by interlocking his fingers, I struggled. I maybe could've tried to learn about looms and weaving to get a hands-on feel for it, but we had only few hours. My dad does have a deep background in SQL and database design in fact, but finding a workable common language on the programmatic or algorithmic behavior of looms was pretty elusive at first. In fact, we'd made an attempt at this very app a year ago in this repo. This didn't work out because I never did understand how a loom works, and I ended up approaching weaving as a repeating stamp pattern. But this didn't work as a weaving model, which is what my dad was after.

By sheer rapid repetitive effort however, starting from "hello world" outputs, we were able to converge on a workable language. In a few hours we got to the point where he would say something like that's almost right but it needs X and I would say oh okay hang on a sec.... I've pushed some changes now try it. That is quite satisfying when it works!

The heart of the app is the SimpleWeaver class. Here are few highlights:

  • There are a few public properties that set colors and other drawing parameters. HarnessOrder is an interesting property that lets you describe a pattern of patterns. This was pretty elusive for a while, but the other properties are more obvious I think. I'll talk about Harnesses below.
  • The Draw method is where the real work happens. This is what loops over the X and Y coordinates of the drawing space and drawing the correct color square in the right place.
  • A Harness, something I struggled hard to understand early on, is what describes a pattern of two colors. ("Warp" and "weft" are the two colors.) Early on, I understood the idea of a simple pattern, meaning a color that repeats every X squares up to the fabric width. More critically, we had to implement the idea of a complex pattern. This is what the screenshot above shows in use, a string of plus/minus symbols and numbers. This is how we expressed a repeating pattern of arbitrary lengths of on-off segments. So, +2-3+1-3 means "2 squares on, 3 squares off, 1 square on, 3 squares off." Aside: I'm not really a big TDD fan, but I write tests where I see opportunities, in this case I had simple assertions for simple and complex patterns. This was a good case for tests.
  • Harness groups were a difficult concept for me grasp, but it lets you combine and arrange harnesses. Each harness is identified by a letter, for example A, B, and C. You set the HarnessOrder to a string like "AB BC CD" to combine the adjacent harnesses, for example, or use something like "A B B A " to weave them in ascending followed by descending order to produce diagonal patterns that go up then down, for example.

img

img

  • The main form itself is what renders the UI. I try to keep the core program logic out of this, and mainly just handle UI widgets and events here. For example, this is how I fill the color comboboxes. This is the Draw button. This is how the harnesses are auto-assigned the next letter. Here are the save and open features.

What's next?

One thing that became clear while using this is that it's really hard to design a pattern to a visual spec. You have to work out the plus/minus harness pattern stuff in your head or on graph paper. The next step for this is to offer some kind of interactive pattern creation UI that lets you click the squares directly to draw a pattern.

About the repo name

"Loom" happens to be close to the title of an MBV song, and I'm a huge MBV fan, so there you go. The app name is tentatively OneilWeave, but might become OWeave.

About

A WinForms virtual weaving app

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages