Mostly Harmless

Difference between revisions of "User:00zX"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
m (Proposal - Useful features we wouldnt mind seeing in Uscript)
m (Proposal - Unreal Engine)
Line 32: Line 32:
  
 
==Proposal - Unreal Engine==
 
==Proposal - Unreal Engine==
+[[Legacy:Unreal_Engine|Unreal Engine]]
+
+[[Unreal_Engine|Unreal Engine]] | [[Legacy:Unreal_Engine|Unreal Engine]]
 
++[[Legacy:Terminology|Terminology]]
 
++[[Legacy:Terminology|Terminology]]
 
++[[Engine Directory Structure]] | [[Legacy:Engine_Directory_Structure|Directory Structure]]
 
++[[Engine Directory Structure]] | [[Legacy:Engine_Directory_Structure|Directory Structure]]
Line 42: Line 42:
 
+++[[Commandlet]] | [[Legacy:Commandlet]]
 
+++[[Commandlet]] | [[Legacy:Commandlet]]
 
++++Compiling | [[Legacy:Compiling_With_UCC]]
 
++++Compiling | [[Legacy:Compiling_With_UCC]]
+++++[[Compiler Error]]
+
+++++[[Compiler Error]] | [[Legacy:Compiler_Error|Compiler Error]]
  
 
==Proposal - Useful features we wouldnt mind seeing in Uscript==
 
==Proposal - Useful features we wouldnt mind seeing in Uscript==

Revision as of 15:02, 29 April 2010

Works in Progress

Unreal Development Kit

UDK: Project Silky - Status: Prototype
UDK: GameDex Framework - Status: Design

Unreal Tournament 3

UT3: GameDex Framework - Status: Beta
Newtators-v1.9e - Status: Point Release
Attrition-v0.5pb - Status: Public Beta

Visual Studio Express C#

UScriptIt - Chasing the dragon through the meta

Highlighters

UnrealWiki - Code Noir Redex Theme

Monobook-noir-alpha3.gif

Status: Beta 1 (testing)

To Install copy the contents of the following page into your own 'User:[name]/monobook.css' page.

User:00zX/monobook.css
W3C CSS Validator
Features
Dark Theme
High Contrast
Improved Readability
Highlighter adjustments for UScript, CSS and XML
Different coloured borders per GameNameSpace
Curved Borders in supporting browsers
Known Issues
Edit/Input boxes are still black text on white.
Profile settings page unreadable.




Proposal - Unreal Engine

Proposal - Useful features we wouldnt mind seeing in Uscript

Block Scope variable defintions

This:

function NoBlockScope()
{
	local Object Obj;
 
	foreach ObjArray(Obj)
	{
		//do something here
	}
}

Would become:

function BlockScope()
{
	foreach ObjArray(local Object Obj)
	{
		//do something here
	}
}

The local keyword could be replaced with var, block or just omitted entirely. Similarly this would work for any type as in the following:

function BlockScopeTwo()
{
	foreach ObjArray(var Object Obj, var int i)
	{
		//do something here
		//Obj and i are only accessible here
	}
	//Obj and i are not assigned in this scope
}

Default variable assignment

This:

function bool CheckReplacement(Actor Other)
{
	local Controller C;
 
	C = Controller(Other);
 
	if(C != None)
	{
		//do something here
	}
}

Would become:

function bool CheckReplacement(Actor Other)
{
	local Controller C = Controller(Other);
 
	if(C != None)
	{
		//do something here
	}
}

The following example is of both block scope and default variable assignment:

function BlockScopeThree()
{
	for(local int i = 0; i < A.length; ++i)
	{
		//do something here
	}
}


Proposal - UScripting

Step by step process of installing, setting up jEdit for use with Uscript. From start to finish, using/commiting to repository's and building using Apache Ant. A major portion of this tutorial is dedicated to giving you the knowledge to editing/customizing your programming environment to your liking (I do feel this can help to improve workflow).

Tools suggested for this tutorial:

  • jEdit - Programmers text editor
  • GIT - Source/Build Repository
  • Uncodex - UScript Class Browser
  • NSIS - Installer/Packaging

Introduction to jEdit

Introduction to UnCodex

Introduction to Git

Compiling

Introduction to NSIS

Introduction to Ant

Using Ant to package a release. Online Manual

Ideas

Using Ant scripts to commit to git repository.

Proposal - Replication

Replication

Status: On Hold

--00zX 13:23, 22 April 2010 (UTC)

Replication / Replication_(computer_science)
Concept of servers and clients.(NetMode/Role/Relevance/Reliability)


Wiki

Contact Me

IRC

00zX on EnterTheGame

Other/Profiles

E-mail 00zX or on