v50 Steam/Premium information for editors
  • v50 information can now be added to pages in the main namespace. v0.47 information can still be found in the DF2014 namespace. See here for more details on the new versioning policy.
  • Use this page to report any issues related to the migration.
This notice may be cached—the current version can be found here.

User:Soundandfury

From Dwarf Fortress Wiki
Jump to navigation Jump to search

DF Designer[edit]

My fort planning / building design utility

Logic Gates[edit]

Many months ago, back in 40d, I experimented a bit with dwarfputing. Here are some of the designs I used; I didn't really get very far, and then someone else went and built a whole computer fortress, so there's not much point now. Especially as, in 0.31, it takes all my effort just to Not Die.

Fast latch gate[edit]

1st

###
~c#
###

2nd

####
#^c#
####

3rd

####
++++.
####

1st c=S (hatch)
2nd c=R, ^=Q
Acts as an SR flipflop but without a not-Q output. Can be used in construction of a clocked SR.

Clocked SR[edit]

1st

 ### ### #
~┼c# #c┼~c
 ### ### #

2nd

 ###########
 #^c#c^#^^c#
 ###########

3rd

 ###########
 +++++++++++.
 ###########

left to right:
1st: ┼=S, c=CLK, c=CLK, ┼=R, c=Q1
2nd: ^=Q1, c=Q, c=not-Q, ^=Q2, ^=notQ(0-1), ^=Q, c=Q2
All ^ are 6-7 except where specified (ie. notQ)
TESTED: WORKS (but Q and not-Q swapped)