Search Results

crossword

Computers & Programming

Improved Crossword Puzzle Generator

I recently got back to improving the crossword puzzle generator. The previous algorithm would only allow for clumps of four letters by pre-searching the word list and forming four word clumps. When the placement algorithm was running, it would try to place those four word clumps onto the…

Continue reading
Computers & Programming

Done with the Crossword Puzzles

I got the puzzle generator working well enough to generate the puzzle I needed. I’m done with this project. It was interesting when I decided to add clumped words to the algorithm. Four words can all come together  in a four-letter clump. It’s a situation that the normal…

Continue reading
Computers & Programming

Crossword Generator

Crossword puzzles are supposed to be designed with a lot of white squares in clumps and with some sort of symmetry. There are different style traditions in the U.S., the U.K, and Japan. Sweden has a very strange looking puzzle style that is a bit different but having…

Continue reading
Computers & Programming

Programming Projects

I have worked on various personal and professional computer programming projects over the years. This is a collection of some of those projects. Links are provided when more details are available. Dates are rough estimates for when the program was developed. Art projects can be found here. Show…

Continue reading
Computers & Programming

Saving a Bitmap File

I added code to save my crossword puzzle and solution to two bitmap files. It is interesting how many people write code to do things of this sort that don’t write it correctly. Puzzle Bitmap void CChildView::SaveImageToFile( const char *pFilename, bool bSolution ) { CSize GridSize = GetGridCellSize();…

Continue reading