示例#1
0
def main(cursor):
	# Get team Id
	team_id = int(common.get_val('team', 0))
	
	text_location = common.get_val('location', "")
	
	if team_id < 1:
		return "<div style='padding: 5px;'>{0}</div>".format(common.select_team_form(cursor, 'list_cities'))
	
	cities_dict = city_q.get_cities_from_team(cursor, team = team_id, include_dead = True)
	
	# Work out city points
	total_points = 0
	for city_id, the_city in cities_dict.items():
		if the_city.dead == True: continue
		total_points += the_city.point_value()
	
	output = []
	
	output.append("""
	<table border="0" cellspacing="0" cellpadding="5" style="width: 100%;">
		<tr class="row2">
			<th>City name</th>
			<th colspan="3">Location</th>
			<th>Port</th>
			<th>Secret</th>
			<th>Dead</th>
			<th>Nomadic</th>
			
			<th>Overlap</th>
			
			<th>Wonder speed</th>
			<th>Population</th>
			<th>Slaves</th>
			<th>Happiness</th>
			
			<th colspan="2">&nbsp;</th>
		</tr>""")
	
	# Work out how fast it can build wonders
	city_wonder_speed = {}
	for c1, city1 in cities_dict.items():
		city_wonder_speed[c1] = math.floor((city1.population + city1.slaves)/1000)
		c1_loc = (cities_dict[c1].x, cities_dict[c1].y)
		
		for c2, city2 in cities_dict.items():
			if city2.dead: continue
			
			if c2 != c1:
				amount = city_rules.wonder_build_rate(city2, city1)
				city_wonder_speed[c1] += amount
		
		city_wonder_speed[c1] = common.number_format(int(city_wonder_speed[c1]))
	
	count = -1
	if len(cities_dict) > 0:
		for city_id, the_city in cities_dict.items():
			count += 1
			
			city_share = 0
			if not the_city.dead:
				if total_points > 0:
					city_share = round(the_city.point_value()/total_points*100,1)
			
			# Happiness
			happiness = city.happiness_str(the_city.happiness)
			
			if happiness == "Rebellious":
				happiness = '<span style="font-weight:bold;color:#A00;">Rebellious</span>'
			
			if happiness == "Utopian":
				happiness = '<span style="font-weight:bold;color:#0A0;">Utopian</span>'
			
			output.append("""
			<tr class="row%(row)d" id="%(city_id)d">
				<td>%(name)s</td>
		
				<td>%(x)s</td>
				<td>%(y)s</td>
				<td style="padding: 0px;"><a class="block_link" href="web.py?mode=view_map&amp;%(map_link)s">Map link</a></td>
				
				<td style="text-align: center;">%(port)s</td>
				<td style="text-align: center;">%(secret)s</td>
				<td style="text-align: center;">%(dead)s</td>
				<td style="text-align: center;">%(nomadic)s</td>
				
				<td>%(overlap)s</td>
				
				<td>%(wonder_speed)s</td>
				<td>%(population)s</td>
				<td>%(slaves)s</td>
				
				<td>%(happiness)s</td>
				
				<!--<td style="padding: 0px;"><a class="block_link" href="web.py?mode=view_city_trade&amp;city=%(city_id)d">City trade</a></td>-->
				<td style="padding: 0px;"><a class="block_link" href="web.py?mode=view_city_matrix&amp;city=%(city_id)d">City matrix</a></td>
				<td style="padding: 0px;"><a class="block_link" href="web.py?mode=edit_city&amp;city=%(city_id)d">Edit city</a></td>
			</tr>
			""" % {	'row': (count % 2),
			
					'city_id': the_city.id,
					'name': common.doubleclick_text("cities", "name", the_city.id, the_city.name, "font-weight:bold"),
					'x': common.doubleclick_text("cities", "x", the_city.id, the_city.x, ""),
					'y': common.doubleclick_text("cities", "y", the_city.id, the_city.y, ""),
					"map_link":	the_city.map_link_args(),
					
					'port': common.bstr(the_city.port),
					'secret': common.bstr(the_city.secret),
					'dead': "" if the_city.dead < 1 else common.doubleclick_text("cities", "dead", the_city.id, the_city.dead, "", size=3),
					'nomadic': common.bstr(the_city.nomadic),
				
					'overlap': the_city.overlap,
				
					'population': common.doubleclick_text("cities", "population", the_city.id, the_city.population, ""),
					'slaves': common.doubleclick_text("cities", "slaves", the_city.id, the_city.slaves, ""),
				
					"wonder_speed": city_wonder_speed[the_city.id],
					"happiness":	happiness,
				})


	# Add new city
	count += 1
	output.append("""
	<tr class="row%(row)d">
		<form action="exec.py" id="add_city_form" method="post" accept-charset="utf-8">
		<input type="hidden" name="mode" value="add_city" />
		<input type="hidden" name="team" value="%(team_id)s" />
		<td style="padding: 1px;"><input type="text" name="name" id="new_name" value="" /></td>
		<td style="padding: 0px;" colspan="2">
			<a href="web.py?mode=view_map&amp;new_mode=list_cities&amp;team=%(team_id)s" class="block_link">Location:</a>
		</td>
		<td colspan="1" style="padding:1px;">
			%(location)s
		</td>
		<td style="padding: 2px;"><input type="checkbox" name="port" value="True" /></td>
		<td style="padding: 2px;"><input type="checkbox" name="secret" value="True" /></td>
		<td style="padding: 2px;"><input type="text" name="dead" id="dead" value="0" size="3"/></td>
		<td style="padding: 2px;"><input type="checkbox" name="nomadic" value="True" /></td>
	
		<td>&nbsp;</td>
		
		<td>&nbsp;</td>
	
		<td style="padding: 1px;"><input type="text" name="population" value="" size="10"/></td>
		<td style="padding: 1px;"><input type="text" name="slaves" value="" size="10"/></td>
	
		<td style="padding: 2px;" colspan="3"><input type="submit" value="Add" /></td>
		<!--
		<td style="padding: 0px;" colspan="3"><a class="block_link" href="#" onclick="$('#add_city_form').submit();">Add</a></td>
		-->
		</form>
		%(onload)s
	</tr>
	""" % {	'row': (count % 2),

			"team_id":	team_id,
			"location": common.text_box("text_location", text_location, custom_id="", size="7"),
			"onload":	common.onload("$('#new_name').focus();"),
			})


	output.append("</table>")

	return "".join(output)
示例#2
0
文件: ti_f.py 项目: Teifion/Rob3
def cities(cursor, the_world, the_team):
	city_dict		= the_world.cities_from_team(the_team.id)
	building_dict	= the_world.buildings()
	
	output = []
	output.append("""<div class="ti_section" id="cities_div">
	<table border="0" cellspacing="0" cellpadding="5" style="width: 100%;">
		<tr class="row2">
			<th>City name</th>
			<th>Location</th>
			<th>Port</th>
			<!--<th>Secret</th>-->
			<th>Nomadic</th>
			<th>Artefacts</th>
			<th>Population</th>
			<th>Slaves</th>
			<th>Production</th>
			<!--<th>Wealth</th>-->
			<th>Happiness</th>
			<th>&nbsp;</th>
		</tr>""")
	
	count = -1
	if len(city_dict) > 0:
		for city_id, the_city in city_dict.items():
			if the_city.dead > 0: continue
			count += 1
			
			# sad_rules.produce_wealth(the_world, the_city)
			
			artefacts = the_city.artefacts
			if len(artefacts) > 0:
				artefacts = len(artefacts)
			else:
				artefacts = ""
			
			# Growth
			growth_rate, growth_constant = city_rules.city_growth_rate(cursor, the_team, the_city, the_world)
			new_population = int((the_city.population * growth_rate) + growth_constant)
			growth_rate = round((growth_rate-1)*100,1)
			
			# Formatting
			if growth_rate == int(growth_rate): growth_rate = int(growth_rate)
			
			# Happiness
			happiness = city.happiness_str(the_city.happiness)
			
			if happiness == "Rebellious":
				happiness = '<span style="font-weight:bold;color:#A00;">Rebellious</span>'
			
			if happiness == "Utopian":
				happiness = '<span style="font-weight:bold;color:#0A0;">Utopian</span>'
			
			output.append("""
			<tr class="row%(row)d" id="%(city_id)d">
				<td>%(name)s</td>
				
				<td>%(terrain)s &nbsp; %(x)s, %(y)s</td>
				
				<td style="text-align: center;">%(port)s</td>
				<!--<td style="text-align: center;">%(secret)s</td>-->
				<td style="text-align: center;">%(nomadic)s</td>
				<td style="text-align: center;">%(artefact)s</td>
				
				<td>%(population)sk, &nbsp;&nbsp;
				%(growth_rate)s%%</td>
				<td>%(slaves)s</td>
				<td>%(production)s + %(wealth)s = %(economy)s</td>
				<!--<td>%(wealth)s</td>-->
				<td>%(happiness)s</td>
				
				<td style="padding: 0px;">
					<a href="#" id="city_%(city_id)s_building_show" onclick="$('#city_%(city_id)s_building_show').hide(); $('#city_%(city_id)s_buildings').show(); $('#city_%(city_id)s_building_hide').show(); return false;" class="block_link">Show buildings</a>
					<a href="#" id="city_%(city_id)s_building_hide" onclick="$('#city_%(city_id)s_building_show').show(); $('#city_%(city_id)s_buildings').hide(); $('#city_%(city_id)s_building_hide').hide(); return false;" class="block_link" style="display: none;">Hide buildings</a>
				</td>
			</tr>
			""" % {	'row': (count % 2),
					
					'city_id': the_city.id,
					'name': the_city.name,
					'x': the_city.x,
					'y': the_city.y,
					
					"terrain":	map_data.terrain[mapper_q.get_terrain(cursor, the_city.x, the_city.y)].title(),
					'port':		common.bstr(the_city.port),
					'secret':	common.bstr(the_city.secret),
					'artefact':	artefacts,
					'nomadic':	common.bstr(the_city.nomadic),
					
					'population':		round(the_city.population/1000.0,1),
					'new_population':	round(new_population/1000.0,1),
					"growth_rate":		growth_rate,
					"wealth":			int(the_city.wealth),
					'slaves':			the_city.slaves,
					
					"production":		int(team_rules.Materials(cursor, the_team, the_world=the_world, one_city_id=city_id)),
					"happiness":		happiness,
					
					"economy":			int(the_city.wealth + team_rules.Materials(cursor, the_team, the_world=the_world, one_city_id=city_id)),
				})
			
			# City buildings
			output.append("<tr id='city_%s_buildings' style='display: none;'><td style='padding: 5px 20px 10px;' colspan='9'>" % the_city.id)
			
			output.append("""
				<table border="0" cellspacing="0" cellpadding="5" style="width:100%%;">
					<tr class="row2">
						<th>Building</th>
						<th>Progress</th>
					</tr>""")
			
			count2 = -1
			buildings_progress, buildings_amount = the_city.get_buildings(cursor)
			
			for b, the_building in building_dict.items():
				if b not in buildings_progress and b not in buildings_amount:
					continue
				
				if buildings_progress.get(b, 0) > 0:
					percentage = float(buildings_progress.get(b, 0))/float(the_building.build_time)
					percentage = int(round(percentage*100))
				
					
				if buildings_amount.get(b, 0) > 0 and buildings_progress.get(b, 0) > 0:
					progress = "%s completed and 1 in progress at %s%%" % (buildings_amount[b], percentage)
				
				elif buildings_amount.get(b, 0) > 0 and buildings_progress.get(b, 0) == 0:
					progress = "%s completed" % (buildings_amount[b])
				
				elif buildings_amount.get(b, 0) == 0 and buildings_progress.get(b, 0) > 0:
					progress = "In progress at %s%%" % (percentage)
				
				else:
					# It's in both but at 0 and 0 so will get removed with the check
					continue
				
				count2 += 1
				output.append("""
				<tr class="row%(count)s">
					<td>%(building_name)s</td>
					<td>%(progress)s</td>
				</tr>""" % {
					"count":			count2%2,
					"building_name":	the_building.name,
					"progress":			progress,
				})
			
			if artefacts != "":
				output.append("<tr><td colspan='2'>The artefact information is located in the <a href='#' onclick='switch_to_chosen();'>Chosen tab</a></td></tr>")
			
			output.append("</table>")
	
	output.append('</table></div>')
	return "".join(output)