From 34c7a0e43a55e60466ce5527722cbdc5c946cd34 Mon Sep 17 00:00:00 2001
From: Adam Frisby
Date: Tue, 26 Jun 2007 04:45:24 +0000
Subject: * Terrain filters! - Think photoshop-style filters for terrain. *
Terrain filters may be written in either C# or JavaScript and loaded at
runtime Use: terrain csfilter somefile.cs -- Loads a C# filter terrain
jsfilter somefile.js -- Loads a JavaScript filter Once a terrain filter has
been loaded, you can use the command as normal, eg terrain demofilter
---
.../OpenGrid.Framework.Communications.OGS1/OGS1GridServices.cs | 9 +++++++++
Common/OpenGrid.Framework.Communications/IGridServices.cs | 2 +-
2 files changed, 10 insertions(+), 1 deletion(-)
(limited to 'Common')
diff --git a/Common/OpenGrid.Framework.Communications.OGS1/OGS1GridServices.cs b/Common/OpenGrid.Framework.Communications.OGS1/OGS1GridServices.cs
index f763446..a67f55d 100644
--- a/Common/OpenGrid.Framework.Communications.OGS1/OGS1GridServices.cs
+++ b/Common/OpenGrid.Framework.Communications.OGS1/OGS1GridServices.cs
@@ -124,6 +124,15 @@ namespace OpenGrid.Framework.Communications.OGS1
return neighbours;
}
+ ///
+ /// Performs a XML-RPC query against the grid server returning mapblock information in the specified coordinates
+ ///
+ /// REDUNDANT - OGS1 is to be phased out in favour of OGS2
+ /// Minimum X value
+ /// Minimum Y value
+ /// Maximum X value
+ /// Maximum Y value
+ /// Hashtable of hashtables containing map data elements
private Hashtable MapBlockQuery(int minX, int minY, int maxX, int maxY)
{
Hashtable param = new Hashtable();
diff --git a/Common/OpenGrid.Framework.Communications/IGridServices.cs b/Common/OpenGrid.Framework.Communications/IGridServices.cs
index 469cf80..d3b7c07 100644
--- a/Common/OpenGrid.Framework.Communications/IGridServices.cs
+++ b/Common/OpenGrid.Framework.Communications/IGridServices.cs
@@ -36,7 +36,7 @@ namespace OpenGrid.Framework.Communications
{
public class GridInfo
{
- public string GridServerURI = "http://grid:8001/";
+ public string GridServerURI = "http://grid.deepgrid.com:8001/"; // Temporarily hardcoded.
public string GridServerSendKey = "badger";
public string GridServerRecvKey = "badger";
}
--
cgit v1.1