From WikiChip
Module:chip
Revision as of 00:02, 4 January 2017 by David (talk | contribs)

To add this template, simple add
{{chip}}
to the page and save. The chip infobox will have a small [Edit Values] button at the top-right corner which can be used to add values using a form.
local p = {}

function p.add_file_prefix(str)
  if string.match(string.lower(str), '^file:') then
    return str
  else
    return 'File:' .. str
  end
end

function p.add_separator(title)
  return mw.html.create('tr')
           :tag('td')
           :attr('class', 'chip-infobox-sep')
           :attr('colspan', '2')
           :wikitext(title)
end

function p.add_entry(value, right)
  local e = mw.html.create('tr')
  e:tag('th')
    :attr('class', 'chip-infobox-entry')
    :wikitext(value)
  e:node(right)
  return e   
end

function p.chip(frame)
    local infobox = mw.html.create('table')

    infobox
        :attr('class', 'chip-infobox')

    -- header
    if frame.args.title then
      infobox
        :tag('tr')
          :tag('td')
            :attr('class', 'chip-infobox-header')
            :attr('colspan', '2')
            :wikitext('[[name::' .. frame.args.title .. ']]')
    else
      infobox
        :tag('tr')
          :tag('td')
          :attr('style', 'font-weight: bold; font-size 2.5em; color: red;')
          :wikitext('ERROR: MISSING TITLE!')
    end

    -- image
    if frame.args.image or frame.args.no_image ~= 'true' then
      local image = frame.args.image and p.add_file_prefix(frame.args.image) or "File:no photo (ic).svg"
      local image_size = frame.args.image_size or "200px" 
      infobox
        :tag('tr')
          :tag('td')
            :attr('class', 'chip-infobox-pic')
            :attr('colspan', '2')
            :wikitext('[[image::' .. image .. '| ]][[' .. image .. '|' .. image_size .. ']]')

      -- add a caption, if provided
      if frame.args.caption then
        infobox
          :tag('tr')
            :tag('td')
              :attr('class', 'chip-infobox-pic-caption')
              :attr('colspan', '2')
              :wikitext('[[image capation::' .. frame.args.caption .. ']]')
      end
    end

    -- ####################################################################
    -- some general info first
    infobox:node(p.add_separator('General Info'))
    
    -- designer
    if frame.args.designer then
      local designers = mw.html.create('td'):wikitext(frame.args.designer)
      for i = 2, 10 do
      	if not frame.args['designer_' .. i] then break end
      	designers:wikitext(', [[designer::' .. frame.args['designer_' .. i] .. ']][[category:microprocessor models by ' .. mw.ustring.lower(frame.args['designer_' .. i]) .. ']]')
      end
   	  infobox:node(p.add_entry('Designer', designers))
	end
    
    -- manufacturer
    if frame.args.manufacturer then
      local manufacturers = mw.html.create('td'):wikitext(frame.args.manufacturer)
      for i = 2, 10 do
      	if not frame.args['manufacturer_' .. i] then break end
      	manufacturers:wikitext(', [[manufacturer::' .. frame.args['manufacturer_' .. i] .. ']][[category:microprocessor models by ' .. mw.ustring.lower(frame.args['manufacturer_' .. i]) .. ']]')
      end
   	  infobox:node(p.add_entry('Manufacturer', manufacturers))
	end
	
	-- model number
	if frame.args.model_number then
	  infobox:node(p.add_entry('Model Number', mw.html.create('td'):wikitext('[[model number::' .. frame.args.model_number .. ']]')))
	end
    
    -- part number
    if frame.args.part_number then
      local parts = mw.html.create('td'):wikitext(frame.args.part_number)
      for i = 1, 10 do
      	if not frame.args['part_number_' .. i] then break end
      	parts:wikitext(', [[part number::' .. frame.args['part_number_' .. i] .. ']]')
      end
   	  infobox:node(p.add_entry('Part Number', parts))
	end
	
	-- market segment
    if frame.args.market then
      local markets = mw.html.create('td'):wikitext(frame.args.market)
      for i = 2, 5 do
      	if not frame.args['market_' .. i] then break end
      	markets:wikitext(', [[market segment::' .. frame.args['market_' .. i] .. ']]')
      end
   	  infobox:node(p.add_entry('Market', markets))
	end
	
	-- release date
	if frame.args.first_launched or frame.args.first_announced then
	  local release = mw.html.create('td')
	  if frame.args.first_announced then
	    release:wikitext('[[first launched::' .. frame.args.first_announced .. ']] (announced)')
	  end
	  if frame.args.first_launched then
	  	if frame.args.first_announced then
	  	  release:wikitext('<br>')	
  		end
	    release:wikitext('[[first launched::' .. frame.args.first_launched .. ']] (launch)')
	  end
	  infobox:node(p.add_entry('Release', release))
	end
	
	-- EOL
	if frame.args.last_order or frame.args.last_shipment then
	  local release = mw.html.create('td')
	  if frame.args.last_order then
	    release:wikitext('[[last order::' .. frame.args.last_order .. ']] (last order)')
	  end
	  if frame.args.last_shipment then
	  	if frame.args.last_order then
	  	  release:wikitext('<br>')	
  		end
	    release:wikitext('[[last shipment::' .. frame.args.last_shipment .. ']] (last order)')
	  end
	  infobox:node(p.add_entry('End-of-life', release))
	end
	
	-- release price
	if frame.args.release_price then
	  infobox:node(p.add_entry('Release Price', mw.html.create('td'):wikitext('[[release price::' .. frame.args.release_price .. ']]')))
	end

    -- ####################################################################
    -- some general specs
    infobox:node(p.add_separator('General Specs'))
	
	-- family
	if frame.args.family then
	  infobox:node(p.add_entry('Family', mw.html.create('td'):wikitext('[[microprocessor family::' .. frame.args.family .. ']]')))
	end
	
	-- series
	if frame.args.series then
	  infobox:node(p.add_entry('Series', mw.html.create('td'):wikitext('[[microprocessor series::' .. frame.args.series .. ']]')))
	end
	
	-- locked?
	if frame.args.locked then
	  infobox:node(p.add_entry('Locked', mw.html.create('td'):wikitext('[[has unlocked clock multiplier::' .. frame.args.locked .. ']]')))
	end
    
    -- frequency
    if frame.args.frequency then
      local frequencies = mw.html.create('td'):wikitext(frame.args.frequency)
      for i = 2, 10 do
      	if not frame.args['frequency_' .. i] then break end
      	frequencies:wikitext(', [[base frequency::' .. frame.args['frequency_' .. i] .. ']]')
      end
   	  infobox:node(p.add_entry('Frequency', frequencies))
	end
    
    -- turbo frequency
    if frame.args.turbo_frequency then
      local turbo = mw.html.create('td'):wikitext(frame.args.turbo_frequency)
      for i = 1, 30 do
      	--sometimes turbo is not specified for odd-cores, so skip 2 each time, so we can't break
        --if not frame.args['turbo_frequency' .. i] then break end
      	local s = 1 == 1 and 's' or ''
      	turbo:wikitext(', [[turbo frequency (' .. i .. ' core' .. s .. ')::' .. frame.args['turbo_frequency' .. i] .. '| ]]' ..
      		frame.args['turbo_frequency' .. i] .. ' (' .. i .. ' core' .. s .. ')')
      end
   	  infobox:node(p.add_entry('Turbo Frequency', turbo))
	end

    return infobox
end

return p