UT99 SDK

For questions and discussion about UnrealEd, UnrealScript, and other aspects of Unreal Engine design.

Moderators: Semfry, ividyon

User avatar
zacman
Skaarj Warlord
Skaarj Warlord
Posts: 690
Joined: 23 Jun 2009, 02:51
Location: Under your bed with a Chainsaw

Re: UT99 SDK

Post by zacman »

Cheers :tup:
<<EDIT>> when I open the editor after installing it, I get:
Image
Image[url=steam://friends/add/76561198048595886]Image[/url]

Code: Select all

(11:32:26) Shivaxi: i love fat girls

Code: Select all

(03:01:24 PM) <+All_Rights_Reserved> i'm not masturbating
User avatar
Shadow
Skaarj Assassin
Skaarj Assassin
Posts: 100
Joined: 11 Nov 2007, 20:52
Location: Germany
Contact:

Re: UT99 SDK

Post by Shadow »

Ouh not that again.

There're only 3 possible reasons for this:

Reason 1 - that function is declared in C++, but not in Unreal Script
Reason 2 - not all System Packages are loaded correctly
Reason 3 - System Packages of different Builds are messed together

Reason 1 can be excluded, Acos, for example is definitely defined and mirrored in C++ / Unreal Script:

In sdkObject.uc :

Code: Select all

native static final function float ACos(float X);

And mirrored in UnSDKObject.cpp :

Code: Select all

void UsdkObject::execACos(FFrame &Stack, RESULT_DECL)
{
	guard(UsdkObject::exeACos);

	P_GET_FLOAT(X);
	P_FINISH;

	*(FLOAT*)Result = appAcos(X);

	unguard;
}
IMPLEMENT_FUNCTION(UsdkObject,-1,execACos);

Some other guys experienced a similar error, after installing the SDK in a fresh new UT install it worked for them
Last edited by Shadow on 31 Dec 2010, 10:19, edited 1 time in total.
User avatar
zacman
Skaarj Warlord
Skaarj Warlord
Posts: 690
Joined: 23 Jun 2009, 02:51
Location: Under your bed with a Chainsaw

Re: UT99 SDK

Post by zacman »

Never had another SDK install before, so can rule out 3... I followed the directions in the Install manual thingie exactly :/
Image[url=steam://friends/add/76561198048595886]Image[/url]

Code: Select all

(11:32:26) Shivaxi: i love fat girls

Code: Select all

(03:01:24 PM) <+All_Rights_Reserved> i'm not masturbating
User avatar
Shadow
Skaarj Assassin
Skaarj Assassin
Posts: 100
Joined: 11 Nov 2007, 20:52
Location: Germany
Contact:

Re: UT99 SDK

Post by Shadow »

Ok with a little help by raven we found out what's the reason for this: some native functions require index pointers. I uploaded a Hotfix that patches the current Beta removing that bug.

Hotfix

Mirror 1 (ModDB): UnrealTournamentSDK-2010-12-BETA_Hotfix1.zip
Mirror 2 (Mediafire): UnrealTournamentSDK-2010-12-BETA_Hotfix1.zip
User avatar
zacman
Skaarj Warlord
Skaarj Warlord
Posts: 690
Joined: 23 Jun 2009, 02:51
Location: Under your bed with a Chainsaw

Re: UT99 SDK

Post by zacman »

Cheers, looks like it works now ^^
Image[url=steam://friends/add/76561198048595886]Image[/url]

Code: Select all

(11:32:26) Shivaxi: i love fat girls

Code: Select all

(03:01:24 PM) <+All_Rights_Reserved> i'm not masturbating
User avatar
Shadow
Skaarj Assassin
Skaarj Assassin
Posts: 100
Joined: 11 Nov 2007, 20:52
Location: Germany
Contact:

Re: UT99 SDK

Post by Shadow »

Glad it works now, stupid error..
User avatar
Jet v4.3.5
Skaarj Elder
Skaarj Elder
Posts: 1247
Joined: 24 Dec 2007, 17:40
Contact:

Re: UT99 SDK

Post by Jet v4.3.5 »

I'm wondering about one thing that I couldn't seem to get working after I looked for instructions in the help docs, and I have no idea if it's functional yet, but for the trans-level actor(s) that allow you to move from one map to another and then back to the first map with everything the way you'd left it, how does it work and what would I have to do to set up a functioning transition with it?
Image
ModDb Portfolio
"Bear," she cried. "I love you. Pull my head off."
User avatar
Shadow
Skaarj Assassin
Skaarj Assassin
Posts: 100
Joined: 11 Nov 2007, 20:52
Location: Germany
Contact:

Re: UT99 SDK

Post by Shadow »

The Level-hub System is currently not implemented, it was coded by moonangel and I'm going to port it to C++ in one of the coming releases. The concept is simple: the state of the level as you left it is temporary saved in a save-file like a savegame and restored upon re-entering the level. One of the easiest ways to create such non-linear level design.
User avatar
Shadow
Skaarj Assassin
Skaarj Assassin
Posts: 100
Joined: 11 Nov 2007, 20:52
Location: Germany
Contact:

Re: UT99 SDK

Post by Shadow »

September Beta Preview

New Features
  • Vertex Sprite Rendering
  • Vertex Corona Rendering
  • Enhanced Unreal Mesh System
  • Static Mesh Support !
  • Unreal Enigma Particle Engine !
  • Vegetation Engine + Vegetation Editor !
  • Vector2D Support (Internal)
Fixes/Updates
  • false native function identifiers in the IMPLEMENT_FUNCTION(OBJECT, ID, execNAME) macro of sdkObject.uc have been corrected
  • completed work on all LinkedLists of new LevelInfo, LinkedLists now fully work both in-Editor and ingame
  • in-Editor UNDO/REDO bug for all render actors removed
  • in-Editor UNDO/REDO Support for all render actors
  • improved Render Pass
  • all functions in UnSDKMath.h (sdkCore.dll) are inlines now (speed increase)
Screenshots

Image Image Image Image
Z-enzyme
White Tusk
White Tusk
Posts: 2136
Joined: 13 Nov 2007, 20:01

Re: UT99 SDK

Post by Z-enzyme »

► Show Spoiler
► Show Spoiler
► Show Spoiler
If I was a religious person I'd definitely changed my god... Shadow, that is amazing. Enuff said.
Last edited by Z-enzyme on 27 Sep 2011, 22:51, edited 1 time in total.
User avatar
Buff Skeleton
>:E
>:E
Posts: 4175
Joined: 15 Dec 2007, 00:46

Re: UT99 SDK

Post by Buff Skeleton »

Oh MAN! :o
Image
User avatar
Shadow
Skaarj Assassin
Skaarj Assassin
Posts: 100
Joined: 11 Nov 2007, 20:52
Location: Germany
Contact:

Re: UT99 SDK

Post by Shadow »

Thanks hehe!

But I must admit, that the Static Mesh Support as released with September Beta is not yet finished, it needs optimization on Light Pass, Occlusion, general Performance etc. I will fix those things in the next release
Last edited by Shadow on 27 Sep 2011, 18:58, edited 1 time in total.
UB_
Nali Priest
Nali Priest
Posts: 7973
Joined: 11 Nov 2007, 21:00

Re: UT99 SDK

Post by UB_ »

Beastly release!
ImageImage
User avatar
TheIronKnuckle
Gilded Claw
Gilded Claw
Posts: 1968
Joined: 12 Nov 2007, 07:21
Location: Riding my bicycle from the highest hill in Sydney to these forums

Re: UT99 SDK

Post by TheIronKnuckle »

So 227 can't pimp itself as better just cause it has smeshes anymore :p
Good news
Ignorance is knowing anything
And only idiots know everything
Delemary
Skaarj Scout
Skaarj Scout
Posts: 45
Joined: 25 Sep 2011, 02:56

Re: UT99 SDK

Post by Delemary »

speaking of meshes. idk how the hell to add them to my map in editor 2 and 2.1 i can do it in 4.1 but yea. makign a map last night and went to the meshes and found a nice pipe mesh i wanted to use. from there i didnt know what to do ahaha. tips?
Post Reply