Website may be up and down over next few months. I'm currently doing a complete overhaul of everything. Going back to simple individual .htm pages, new overall site theme, sanitizing and cleaning up html of all pages and blog posts, attempting to implement a new tooling and publishing system etc etc.

Movie Review list

Published 6/30/2009 by createdbyx in News

I have tweaked the Articles page and added a new page titled "Movie Review List" where I will be listing the various movies that I have watched. The list is only about ten percent complete at this point. I have been keeping a list of movies I have watched these last few years so I will be adding more to the list as I find the time and will to do so.


XNA WinForms Reduex!

Published 6/15/2009 by createdbyx in News | Programming | XNA

First start a new xna window game project. Then add a new "MDI Parent Form" to the project. After that change the code in the Program.cs file to look like this ...

static void Main(string[] args)
{
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);

    using (Game1 game = new Game1())
    {
        MDIParent1 mainMDIForm = new MDIParent1();
        var gameWindow = Control.FromHandle(game.Window.Handle) as Form;
        if (gameWindow != null)
        {
            gameWindow.MdiParent = mainMDIForm;
        }

        mainMDIForm.Show();
        gameWindow.Show();
        game.Run();
    }
}

Now press F5 to run the application. Voila! You can now proceed to add game editing or other win form controls to the MDI window for what ever you need. But some initial testing raised a few minor issues.

The first one is that once in a while the viewport does not get updated if the game window is resized. There is also a issue where keyboard keys don't work properly if the game window is the active window. To over come this just make sure that after you are finished interacting with the game window to just deactivate the window again. Then you will be able to press Alt-F to bring up the file menu for example.


Winforms in XNA

Published 6/1/2009 by createdbyx in Example | News | Programming | XNA

I have created a example project on the XNA page that demonstrates how to add winform controls to your game window in just a few lines of code. I created this project because I recently downloaded the winforms example project found at the XNA creators club website and found it to be rather overkill for what it does.  View Screenshot

Download the example project here. AddingWinformControlsTest.zip (38.58 kb) (XNA 3.0)


A few more updates

Published 5/16/2009 by createdbyx in Gallery | News | XNA

I have uploaded a few more images to the gallery. I took some pictures of Rocks, Green Algie, and Grey Sand, the pictures can be found under the "Game Art and 3D Modeling Textures" of the gallery.

There is also some pictures of the Old Skeena bridge that connects Terrace to Thornhill. They can be found under the "Places" section of the gallery called "Old Bridge Graphiti May 15, 2009" and "Terrace Mountian and Old Bridge May 15, 2009"

The gallery is running a little slow at the moment and I'm not sure why. It may still be generating thumbnails of the images. There is about 3 or more gigs of images in the gallery and about 3000+ images. If the slow download time persists then I am going to have to take another look at the code. Also you'll notivce that I didn't link directly to the new images in the gallery and that is a feature I have yet to code into the gallery.

I also added a few more project pages.

  • SLPathfindaz utility library - The SLPathfindaz library is intended to provide a easy to use A* pathfinding implementation for xna.
  • XNAVisies debug visualizers - The XNAVisies project is intended to provide debug visualizers for various xna types.
  • xCollectiveXNA library has been updated and Release 2 is now availible. The events are now similar to the standard .NET (sender, eventargs) style. Also the code is now fully commented with xml comments.

There is still alot of work to do getting the site finished, a few theme tweaks here and there, some xna pages are not fiished being written, and a few other things I am going to try to get done in the next couple of weeks.


Screw it

Published 5/1/2009 by createdbyx

I've been procrastinating over uploading this new website for almost two years now and today I just decided to say screw it, and upload it as is, finished or not. A number of xna project pages are not finished being written and there are inevetably going to be problems with the site here and there but it seems for the most part the update went without a hitch.

The new site is powered by BlogEngine.net and allows for much better blogging support then the previous site that I wrote myself. Not to mention new site has search, comments, and a number of custom extentions and user controls that i have made for this site.

Feel free to send input on anything you see on the site and I'll get back to you as soon as I can.


Pruter go boom!

Published 3/26/2009 by createdbyx in News
Tags:

I am beginning to see a trend in the reliability of hp ac adapters for laptops. This is the second hp laptop I have owned and the second hp laptop ac adapter to fizzle out. Both ac adapters died after about 1.5 to 2 years of use. So I dusted off my ancient desktop tower (1Ghz, 512Mb ram, 20Gb hard drive, ATI 9200) to make this post.

I could not figure out why it was locking up on me. Not really locking up but was intermittently being pegged at 100% CPU usage. I pulled each component out separately and tested the computer. The ram, hard drive, virus scans, hard drive scans, etc. didn't seem to solve the problem. I finally managed to find a web page from other people who had similar issues, and turns out that it was the ac adapter. As soon as I pulled the cord out if the laptop and let it automatically switchover to battery power the CPU usage dropped back down to nothing. Doh!

So now I'm stuck with a computer from the time of antiquities until the new ac adapter I ordered comes in the mail. It's not all that bad really. It performs rather sporty for a 8-10 year old machine. :P


WoW

Published 2/4/2009 by createdbyx in News
Tags:
*Sigh*  World of Warcraft is consuming my days faster then I'd like it to. It's been a month already since my last post and I basically have not written a line of code in that time. I was afraid this would happen again. I would not be able to manage my time properly between wow and working on my programming projects.

"Uprising" the guild that I am in is ranked 2nd on the Sisters of Elune server and I think I play alot of wow but these guys play alot more then I do! We are all trying to get geared runing Malaygos, Sarth, naxx etc,  before the next patch adds more instances to run. It's ... "fun" ... but it is also demanding trying not to get left behind in the guild.  I placed "fun" in quotes because I still have major issues with wow and the way it does things. Read gpwiki article.

Although this hand build website has served me well enough so far, I am still not pleased with it. Both it's looks and functionality. I have been working on a new site and have pre uploaded about 2 gigs of files for the new site but I have way to many projects on the go and am trying to get the project pages setup in the new site with tutorials, documentation, and getting the downloadable code in a half way decent state that it is just taking forever.

Long time no posty

Published 12/23/2008 by createdbyx in News
Tags:
Yep as expected I have been playing World of Warcraft instead of working on my new website or doing any programming. :P

So I have not really written any code for the last month or so. I started a Death Knight toon and got him to level 80 and got into a guild that runs 25 man naxx four times a week. 

New example added

Published 11/20/2008 by createdbyx in Example | News | Programming | XNA
I have added a new xna 3.0 example project that demonstrates stenciling. You can download the example here. View Screenshot

Heaven help me!

Published 10/17/2008 by createdbyx in Games | News
I feel the shakes starting again. They never really left me. I try to put it out of my mind, but it is almost always there. An itch that yearns to be scratched. The anxiousness, the tension, the need to walk through the fields of Nagrand, to soar on a majestic Golden Gryphon, to curse at my pet whom I named "Retard".

Yes, if you have not already guessed or clicked on the above links I am referring to World of Warcraft. I have never felt such a deep sense of loss when I stopped playing that game. It's been six months give or take since I said my goodbyes. I guess living in a virtual world for six months straight will do that. I have never felt so drawn into a game world as much as I have in wow. With so much to see and do, I miss being there. Living it, loving it, hating it.

As I am writing this I can hear my brother playing wow in the next room. He has just recently renewed his account. He tells me he needs someone to play with, and to quest by his side. I can hear the clashing of swords, ogres grunting, steel blades impacting on shields.

But I hesitate, as much as I yearn to join him in glorious battle. To visit new places, and rejoin old friends, and guild mates. I know that if I renew my account, it will surely consume me. Countless hours will turn into days, then weeks, then months! I know I will only be be able to pull my self away just long enought to eat and sleep. My dreams will be full of ideas, places, and experiences that I will long to explore.

The new expantion pack Wrath of Lich King is drawing near. Should I or should I not renew my account. I find myself torn in two directions, between addiction and a sad emptyness.

Heaven help me! I have just clicked the complete purchase button ...

Created by: X

Just another personal website in this crazy online world

Name of author Dean Lunz (aka Created by: X)
Computer programming nerd, and tech geek.
About Me -- Resume