Exemplo n.º 1
0
def moerdergraphall(game, filename, alledges=False, nodefontsize=8.0, edgefontsize=8.0, rounds=None):
	if rounds is None:
		rounds = game.rounds.values()
	elif type(rounds) is not list:
		rounds = [rounds]
	# G is the main Graph object
	G = graph.Digraph("Moerder")
	G.model = 'subset'
	G.overlap = 'compress'
	G.splines = True
	G.normalize = True
	G.packmode = 'graph'
	G.rankdir = 'LR'
	# a dict for indexing all nodes
	nodes = {}
	# we need to keep some of the nodes in mind
	prev_node = first_node = node = None
	# make a copy of the participant list so we don't jumble up the original list
	participants = sorted(rounds, key=lambda x: len(x.participants))[-1].participants[:]
	gmnode = G.add_node('Game Master')
	gmnode.label = 'Game Master'
	gmnode.fontsize = nodefontsize
	gmnode.fontname = 'arial'
	gmnode.color = 'gray'
	gmnode.fontcolor = 'gray'
	gmnode.style = 'rounded'
	hnode = inode = G.add_node('invisible')
	inode.style = 'invisible'
	inode.pos = (0.0, 0.0)
	if len(participants) > 120:
		sorrynode = G.add_node('Sorry, zu viele Nodes in diesem Graph...')
		# do the layout math and save to file
		if graph.__dict__.has_key('_yapgvb_py'):
			# if yapgvb works in python-only mode
			rc = MyRenderingContext()
			G.layout(graph.engines.dot, rendering_context=rc)
			G.render(filename, rendering_context=rc)
		else:
			# if yapgvb has libboost support compiled in
			G.layout(graph.engines.dot)
			G.render(filename)
		return
	massmurderers = game.getMassMurderer()
	massmurdererlist = [ player.public_id for player in massmurderers['killers'] ] if len(massmurderers) > 0 else []

	if not alledges:
		# if not admin/gameover view: sort nodes prior to adding them to the graph
		participants.sort(key = lambda p: p.player.name + p.player.info)
	nodecount = len(participants)
	nodesperline = math.trunc(math.sqrt(nodecount))
	# for each participant, add a node to the graph bearing his name
	nodenumber = 0
	for participant in participants:
		nodenumber += 1
		name = participant.player.name
		if len(participant.player.info) > 0:
			name += "\\n" + participant.player.info
		name = utils.dotescape(name)
		node = G.add_node(participant.player.public_id)
		node.label = name.encode('utf-8')
		node.fontsize = nodefontsize
		node.style = 'rounded,filled'
		node.penwidth = 2
		node.color = '#00003380'
		node.fillcolor = '#FFFFFF00'
		node.margin = 0.01
		nodeweight = game.getDeathsCount(participant) + game.getKillsCount(participant)
		#node.group = str(nodeweight)
		node.pos = ( nodenumber % nodesperline, nodenumber / nodesperline)
		if nodeweight == 0:
			iedge = G.add_edge(inode, node)
			iedge.style = 'invisible'
			iedge.arrowhead = 'none'
			iedge.weight = 0.1
			node.pos = (0.0, 0.0)
			#iedge.constraint = False
		if not prev_node:
			first_node = node
		# put all the nodes into a dict so we could find them fast by the player's id (needed later)
		nodes[participant.player.public_id] = node
		
		prev_node = node
		node.fontname = 'arial'
		# kicked participants are gray
		if participant.killed() and participant.killedby.killer is None:
			#node.color = '#FF6666FF'
			#node.fontcolor = '#33333388'
			#node.fillcolor = '#66666622'
			node.style += ',dashed'
		# mass murderers are black
		if participant.player.public_id in massmurdererlist:
			node.color = 'black'
			node.fillcolor = 'black'
			node.fontcolor = 'white'
		# dead participants are red
		if (game.getDeathsCount(participant) >= len(game.rounds)):
			node.color = '#FF0000FF'
			node.penwidth = 2
			#node.fontcolor = '#FFFFFFFF'
			#node.fillcolor = '#FF0000FF'

	colorgenerator = colorgen(0.86)
	for round in game.rounds.values():
		edgecolor = next(colorgenerator)
		if round not in rounds:
			continue
		for participant in round.participants:
			if alledges or participant.killed():
				edge = G.add_edge(nodes[participant.getInitialKiller().player.public_id], nodes[participant.player.public_id])
				edge.color = edgecolor
				edge.style = 'dashed'
				edge.penwidth = 2
				edge.weight = 6.0
				#edge.constraint = False
			if participant.killed():
				if not participant.killedby.killer is None:
					# normal case
					edge = G.add_edge(nodes[participant.killedby.killer.player.public_id], nodes[participant.player.public_id])
				else:
					# special case of a game master kill
					edge = G.add_edge(gmnode, nodes[participant.player.public_id])
				edge.color = edgecolor
				edge.fontcolor = 'red'
				edge.style = 'solid'
				edge.penwidth = 4
				edge.weight = 10.0
				# set edge label to kill description
				label = utils.dateformat(participant.killedby.date) + ":\\n"
				maxlinelen = max(24, math.trunc(math.ceil(math.sqrt(6 * len(participant.killedby.reason)))))
				label += "\\n".join(textwrap.wrap(''.join([ c for c in participant.killedby.reason if ord(c) < 2048]), maxlinelen)).replace('"', "'")
				edge.label = label.encode('utf-8')
				edge.fontsize = edgefontsize
				edge.fontname = 'arial'
	# do the layout math and save to file
	if graph.__dict__.has_key('_yapgvb_py'):
		# if yapgvb works in python-only mode
		rc = MyRenderingContext()
		G.layout(graph.engines.dot, rendering_context=rc)
		G.render(filename, rendering_context=rc)
	else:
		# if yapgvb has libboost support compiled in
		G.layout(graph.engines.dot)
		G.render(filename)
Exemplo n.º 2
0
def moerdergraph(round,
                 filename,
                 alledges=False,
                 nodefontsize=8.0,
                 edgefontsize=8.0):
    # G is the main Graph object
    G = graph.Digraph("Moerder")
    # a dict for indexing all nodes
    nodes = {}
    # we need to keep some of the nodes in mind
    prev_node = first_node = node = None
    # make a copy of the participant list so we don't jumble up the original list
    participants = round.participants[:]
    if not alledges:
        # if not admin/gameover view: sort nodes prior to adding them to the graph
        participants.sort(key=lambda p: p.player.name + p.player.info)
    # for each participant, add a node to the graph bearing his name
    for participant in participants:
        name = participant.player.name
        if len(participant.player.info) > 0:
            name += "\\n" + participant.player.info
        node = G.add_node(participant.player.public_id)
        node.label = name.encode('utf-8')
        node.fontsize = nodefontsize
        node.margin = 0.03
        if not prev_node:
            first_node = node
        # put all the nodes into a dict so we could find them fast by the player's id (needed later)
        nodes[participant.player.public_id] = node

        prev_node = node
        node.fontname = 'arial'
        # kicked participants are gray
        if participant.killed() and participant.killedby.killer is None:
            node.color = 'gray'
            node.fontcolor = 'gray'
        # dead participants are red
        if participant.killed() and not participant.killedby.killer is None:
            node.color = 'red'
            node.fontcolor = 'red'

    for participant in round.participants:
        if alledges or participant.killed():
            # add black edges for the initial kill assignment
            edge = G.add_edge(
                nodes[participant.getInitialKiller().player.public_id],
                nodes[participant.player.public_id])
            edge.color = 'black'
            edge.weight = 1.0
        if participant.killed():
            # add red edges for the kill
            if not participant.killedby.killer is None:
                # normal case
                edge = G.add_edge(
                    nodes[participant.killedby.killer.player.public_id],
                    nodes[participant.player.public_id])
            else:
                # special case of a game master kill
                node = G.add_node('vorzeitig ausgestiegen')
                node.fontsize = nodefontsize
                node.fontname = 'arial'
                node.color = 'gray'
                node.fontcolor = 'gray'
                edge = G.add_edge(node, nodes[participant.player.public_id])
            edge.color = 'red'
            edge.fontcolor = 'red'
            edge.weight = 1.0
            # set edge label to kill description
            label = utils.dateformat(participant.killedby.date) + ":\\n"
            maxlinelen = max(
                24,
                math.trunc(
                    math.ceil(math.sqrt(6 *
                                        len(participant.killedby.reason)))))
            label += "\\n".join(
                textwrap.wrap(participant.killedby.reason, maxlinelen))
            edge.label = label.encode('utf-8')
            edge.fontsize = edgefontsize
            edge.fontname = 'arial'
    # do the layout math and save to file
    G.layout(graph.engines.dot)
    G.render(filename)
Exemplo n.º 3
0
def moerdergraphall(game,
                    filename,
                    alledges=False,
                    nodefontsize=8.0,
                    edgefontsize=8.0,
                    rounds=None):
    if rounds is None:
        rounds = game.rounds.values()
    elif type(rounds) is not list:
        rounds = [rounds]
    # G is the main Graph object
    G = graph.Digraph("Moerder")
    G.model = 'subset'
    G.overlap = 'compress'
    G.splines = True
    G.normalize = True
    G.packmode = 'graph'
    G.rankdir = 'LR'
    # a dict for indexing all nodes
    nodes = {}
    # we need to keep some of the nodes in mind
    prev_node = first_node = node = None
    # make a copy of the participant list so we don't jumble up the original list
    participants = sorted(
        rounds, key=lambda x: len(x.participants))[-1].participants[:]
    gmnode = G.add_node('Game Master')
    gmnode.label = 'Game Master'
    gmnode.fontsize = nodefontsize
    gmnode.fontname = 'arial'
    gmnode.color = 'gray'
    gmnode.fontcolor = 'gray'
    gmnode.style = 'rounded'
    hnode = inode = G.add_node('invisible')
    inode.style = 'invisible'
    inode.pos = (0.0, 0.0)
    if len(participants) > 120:
        sorrynode = G.add_node(u'Sorry, zu viele Nodes in diesem Graph...')
        sorrynode.label = u'Sorry, zu viele Nodes in diesem Graph...'
        sorrynode.style = 'rounded,filled'
        sorrynode.fontsize = nodefontsize
        sorrynode.style = 'rounded,filled'
        sorrynode.penwidth = 2
        sorrynode.color = '#00003380'
        sorrynode.fillcolor = '#FFFFFF00'
        sorrynode.margin = 0.01
        # do the layout math and save to file
        if graph.__dict__.has_key('_yapgvb_py'):
            # if yapgvb works in python-only mode
            rc = MyRenderingContext()
            G.layout(graph.engines.dot, rendering_context=rc)
            G.render(filename, rendering_context=rc)
        else:
            # if yapgvb has libboost support compiled in
            G.layout(graph.engines.dot)
            G.render(filename)
        return
    massmurderers = game.getMassMurderer()
    massmurdererlist = [
        player.public_id for player in massmurderers['killers']
    ] if len(massmurderers) > 0 else []

    if not alledges:
        # if not admin/gameover view: sort nodes prior to adding them to the graph
        participants.sort(key=lambda p: p.player.name + p.player.info)
    nodecount = len(participants)
    nodesperline = math.trunc(math.sqrt(nodecount))
    # for each participant, add a node to the graph bearing his name
    nodenumber = 0
    for participant in participants:
        nodenumber += 1
        name = participant.player.name
        if len(participant.player.info) > 0:
            name += "\\n" + participant.player.info
        name = utils.dotescape(name)
        node = G.add_node(participant.player.public_id)
        node.label = name.encode('utf-8')
        node.fontsize = nodefontsize
        node.style = 'rounded,filled'
        node.penwidth = 2
        node.color = '#00003380'
        node.fillcolor = '#FFFFFF00'
        node.margin = 0.01
        nodeweight = game.getDeathsCount(participant) + game.getKillsCount(
            participant)
        #node.group = str(nodeweight)
        node.pos = (nodenumber % nodesperline, nodenumber / nodesperline)
        if nodeweight == 0:
            iedge = G.add_edge(inode, node)
            iedge.style = 'invisible'
            iedge.arrowhead = 'none'
            iedge.weight = 0.1
            node.pos = (0.0, 0.0)
            #iedge.constraint = False
        if not prev_node:
            first_node = node
        # put all the nodes into a dict so we could find them fast by the player's id (needed later)
        nodes[participant.player.public_id] = node

        prev_node = node
        node.fontname = 'arial'
        # kicked participants are gray
        if participant.killed() and participant.killedby.killer is None:
            #node.color = '#FF6666FF'
            #node.fontcolor = '#33333388'
            #node.fillcolor = '#66666622'
            node.style += ',dashed'
        # mass murderers are black
        if participant.player.public_id in massmurdererlist:
            node.color = 'black'
            node.fillcolor = 'black'
            node.fontcolor = 'white'
        # dead participants are red
        if (game.getDeathsCount(participant) >= len(game.rounds)):
            node.color = '#FF0000FF'
            node.penwidth = 2
            #node.fontcolor = '#FFFFFFFF'
            #node.fillcolor = '#FF0000FF'

    colorgenerator = colorgen(0.86)
    for round in game.rounds.values():
        edgecolor = next(colorgenerator)
        if round not in rounds:
            continue
        for participant in round.participants:
            if alledges or participant.killed():
                edge = G.add_edge(
                    nodes[participant.getInitialKiller().player.public_id],
                    nodes[participant.player.public_id])
                edge.color = edgecolor
                edge.style = 'dashed'
                edge.penwidth = 2
                edge.weight = 6.0
                #edge.constraint = False
            if participant.killed():
                if not participant.killedby.killer is None:
                    # normal case
                    edge = G.add_edge(
                        nodes[participant.killedby.killer.player.public_id],
                        nodes[participant.player.public_id])
                else:
                    # special case of a game master kill
                    edge = G.add_edge(gmnode,
                                      nodes[participant.player.public_id])
                edge.color = edgecolor
                edge.fontcolor = 'red'
                edge.style = 'solid'
                edge.penwidth = 4
                edge.weight = 10.0
                # set edge label to kill description
                label = utils.dateformat(participant.killedby.date) + ":\\n"
                maxlinelen = max(
                    24,
                    math.trunc(
                        math.ceil(
                            math.sqrt(6 * len(participant.killedby.reason)))))
                label += "\\n".join(
                    textwrap.wrap(participant.killedby.reason,
                                  maxlinelen)).replace('"', "'")
                edge.label = ''.join(
                    [c for c in label.encode('utf-8') if ord(c) < 2048])
                edge.fontsize = edgefontsize
                edge.fontname = 'arial'
    # do the layout math and save to file
    if graph.__dict__.has_key('_yapgvb_py'):
        # if yapgvb works in python-only mode
        rc = MyRenderingContext()
        G.layout(graph.engines.dot, rendering_context=rc)
        G.render(filename, rendering_context=rc)
    else:
        # if yapgvb has libboost support compiled in
        G.layout(graph.engines.dot)
        G.render(filename)
Exemplo n.º 4
0
def moerdergraph(round, filename, alledges=False, nodefontsize=8.0, edgefontsize=8.0):
	# G is the main Graph object
	G = graph.Digraph("Moerder")
	# a dict for indexing all nodes
	nodes = {}
	# we need to keep some of the nodes in mind
	prev_node = first_node = node = None
	# make a copy of the participant list so we don't jumble up the original list
	participants = round.participants[:]
	if not alledges:
		# if not admin/gameover view: sort nodes prior to adding them to the graph
		participants.sort(key = lambda p: p.player.name + p.player.info)
	# for each participant, add a node to the graph bearing his name
	for participant in participants:
		name = participant.player.name
		if len(participant.player.info) > 0:
			name += "\\n" + participant.player.info
		node = G.add_node(participant.player.public_id)
		node.label = name.encode('utf-8')
		node.fontsize = nodefontsize
		node.margin = 0.03
		if not prev_node:
			first_node = node
		# put all the nodes into a dict so we could find them fast by the player's id (needed later)
		nodes[participant.player.public_id] = node
		
		prev_node = node
		node.fontname = 'arial'
		# kicked participants are gray
		if participant.killed() and participant.killedby.killer is None:
			node.color = 'gray'
			node.fontcolor = 'gray'
		# dead participants are red
		if participant.killed() and not participant.killedby.killer is None:
			node.color = 'red'
			node.fontcolor = 'red'

	for participant in round.participants:
		if alledges or participant.killed():
			# add black edges for the initial kill assignment
			edge = G.add_edge(nodes[participant.getInitialKiller().player.public_id], nodes[participant.player.public_id])
			edge.color = 'black'
			edge.weight = 1.0
		if participant.killed():
			# add red edges for the kill
			if not participant.killedby.killer is None:
				# normal case
				edge = G.add_edge(nodes[participant.killedby.killer.player.public_id], nodes[participant.player.public_id])
			else:
				# special case of a game master kill
				node = G.add_node('vorzeitig ausgestiegen')
				node.fontsize = nodefontsize
				node.fontname = 'arial'
				node.color = 'gray'
				node.fontcolor = 'gray'
				edge = G.add_edge(node, nodes[participant.player.public_id])
			edge.color = 'red'
			edge.fontcolor = 'red'
			edge.weight = 1.0
			# set edge label to kill description
			label = utils.dateformat(participant.killedby.date) + ":\\n"
			maxlinelen = max(24, math.trunc(math.ceil(math.sqrt(6 * len(participant.killedby.reason)))))
			label += "\\n".join(textwrap.wrap(participant.killedby.reason, maxlinelen))
			edge.label = label.encode('utf-8')
			edge.fontsize = edgefontsize
			edge.fontname = 'arial'
	# do the layout math and save to file
	G.layout(graph.engines.dot)
	G.render(filename)