Virtonomica: Unit List v3.0

Позволяет быстро закрывать подразделения без дополнительных окон

目前為 2016-02-06 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name           Virtonomica: Unit List v3.0
// @description    Позволяет быстро закрывать подразделения без дополнительных окон
// @namespace      virtonomica
// @version        3.2
// @include        http://*virtonomic*.*/*/main/company/view/*/unit_list
// ==/UserScript==

var run = function() {

	var win = (typeof(unsafeWindow) != 'undefined' ? unsafeWindow : top.window);
	$ = win.$;

	function roundPrice( sal) { 	
		return Math.ceil((Math.floor(sal *100) +1)/100);
	}
	
	function getSellPrice(spHtml){
		var prize = 0;
		
		$(spHtml).find("td:contains('$')").each(function() { 
			var str = $(this).text();
			//console.log("str = " + str);
			str = str.replace('$','').replace(/\s+/g,'');
			prize += parseFloat(str,10);
		});
		prize = prize/2;
		
		return prize;
	}
	
	var el = $("a[href*='main/unit/view']").parent().each( function() {
		href = $("a", this).attr('href');
		if ( href.search("manufacture") != -1 ) {
			href1 = href;
			href1 = href1.replace("main/unit/view","window/technology_market/ask/by_unit");
			href1 = href1.replace("manufacture","offer/set");
			href = href.replace("manufacture","");
//			$(this).append("<a href="+href+"supply><img width=16 height=16 alt='Supply' src='/img/unit_types/warehouse.gif'/><a href="+href1+ " onclick='return doWindow(this, 800, 500);'><img width=16 height=16 alt='Tech' src='/img/icon/invention.gif'/>");
		}
		else {
			if ( href.search("trading_hall") != -1 ) {
				href = href.replace("trading_hall","supply");
//				$(this).append("<a href="+href+ "><img width=16 height=16 alt='Supply' src='/img/unit_types/warehouse.gif'/>");
			}
			else {
				if ( href.search("investigation") != -1 ) {
					href = href.replace("main","window");
					href = href.replace("investigation","project_create");
//					$(this).append("<a href="+href+ " onclick='return doWindow(this, 800, 320);'><b>New!</b>");
				}
				else {
					href1 = href.replace("main/unit/view","window/unit/changename");
					href2 = href.replace("main/unit/view","window/unit/market/sale");
					href3 = href.replace("main/unit/view","window/unit/close");
//					$(this).append("<a href="+href1+ " onclick='return doWindow(this, 800, 320);'><img width=16 height=16 alt='Change name' src='/img/units/edit.gif'/>");
					//$(this).append("<a href="+href2+ " onclick='return doWindow(this, 650, 400);'>70%<img width=16 height=16 alt='Sell' src='/img/common/coin_black.gif'/></a>");
					//$(this).append("<a href="+href3+ " onclick='return doWindow(this, 800, 360);'><img width=16 height=16 alt='Close' src='/img/del.gif'/></a>");
					
					var sell70 = $("<a href='#'><img width=16 height=16 alt='Sell' src='/img/common/coin_black.gif'/>70%</a>");
					sell70.click(function() {
						if(!confirm('Продать предприятие за 70% цены?')) return false;
						
						var thisLink = $(this);
						var unitLink = $(this).parent().children().first();
						var svPostUrl = unitLink.attr('href').replace("main/unit/view","window/unit/market/sale");
						$.get(svPostUrl, function( data ) {
							var sellPrice = getSellPrice(data);
							console.log("sellPrice = " + sellPrice);
							if (isNaN(sellPrice) || sellPrice <= 0) return false;
							
							var data = {};
							data['price'] = roundPrice(0.70 * sellPrice);
							data['sale'] = 'Выставить предприятие на продажу';
							//console.log("data = " + JSON.stringify(data));
							//console.log("svPostUrl = " + svPostUrl);
							$.post( svPostUrl, data )
								.done(function() {
								//console.log( "success" );
								unitLink.attr('style','text-decoration: line-through;');
								thisLink.attr('style','font-weight: bold;');
								//window.location = window.location.href;
							})
								.fail(function() {
								console.log( "error" );
							});
						});
					});
					$(this).append(sell70);
					var sell100 = $("<a href='#'>&nbsp;100%</a>");
					$(this).append(sell100);
					var sell300 = $("<a href='#'>&nbsp;300%</a>");
					$(this).append(sell300);
					
					var delBtn = $('<a href="#"><img width=16 height=16 alt="Закрыть быстро" src="/img/del.gif"/></a>');

					delBtn.click(function() {
						if(!confirm('Закрыть предприятие')) return false;
						
						var svPostUrl = $(this).parent().children().first().attr('href').replace("main/unit/view","window/unit/close");
						var row = $(this).parent().parent();
						var data = {};
						data['close_unit'] = 'Закрыть предприятие';
						//console.log("data = " + JSON.stringify(data));
						//console.log("svPostUrl = " + svPostUrl);
						$.post( svPostUrl, data )
							.done(function() {
							//console.log( "success" );
							row.hide();
							//window.location = window.location.href;
						})
							.fail(function() {
							console.log( "error" );
						});
						//$.post( href3, { close_unit: "Закрыть предприятие" } );
						//return false;
					});
					$(this).append(delBtn);
				}
			}
		}
	});
	
}

var script = document.createElement("script");
script.textContent = '(' + run.toString() + ')();';
document.documentElement.appendChild(script);