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
Revision as of 06:47, 4 December 2009 by Soundandfury (talk | contribs) (DF Designer, my fort planning / building design utility)
Jump to navigation Jump to search

DF Designer

My fort planning / building design utility

Logic Gates

I'm experimenting a bit with dwarfputing. Details & designs will probably appear here in due course.

Fast latch gate

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

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)