<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://community.lionhead.com/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Programming</title><link>http://community.lionhead.com/forums/12/ShowForum.aspx</link><description>Programming discussion forum. For the beginner and the novice programmer.</description><dc:language>en-US</dc:language><generator>CommunityServer 2.0 (Debug Build: 60217.2664)</generator><item><title>How do I post c++ code on these forums so it's highlighted and not mangled with escapes?</title><link>http://community.lionhead.com/forums/thread/3418943.aspx</link><pubDate>Sun, 22 Nov 2009 00:35:11 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3418943</guid><dc:creator>XALAN</dc:creator><slash:comments>3</slash:comments><comments>http://community.lionhead.com/forums/thread/3418943.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3418943</wfw:commentRss><description>I tried using the &lt;font face="Lucida Console" size="2"&gt;&lt;/font&gt; but that didn't seem to do anything.&lt;br /&gt;&lt;br /&gt;Please help.</description></item><item><title>Problem with Overloaded Equality Operator</title><link>http://community.lionhead.com/forums/thread/3418927.aspx</link><pubDate>Sat, 21 Nov 2009 19:56:39 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3418927</guid><dc:creator>PresCoke</dc:creator><slash:comments>2</slash:comments><comments>http://community.lionhead.com/forums/thread/3418927.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3418927</wfw:commentRss><description>As you can tell from the title I'm trying to build an overloaded equality operator to see when two objects are equal, however it doesn't seem to work, so I was hoping one of you fine people could point out the problem to me.&lt;br /&gt;&lt;br /&gt;here's the code, not: m_speed, m_altitude, m_bearing, m_start are integers; m_x and m_y are floats; and m_name is a character array.&lt;br /&gt;&lt;br /&gt;bool FlightPlan:&lt;img src="/emoticons/emotion-3.gif" alt="Surprise [:O]" /&gt;perator==(const FlightPlan &amp;amp;other)&lt;br /&gt;{&lt;br /&gt;    fprintf (stderr, "Equality Operator runs to #1\n");&lt;br /&gt;    if (other.m_speed==m_speed &amp;amp;&amp;amp; other.m_bearing==m_bearing &amp;amp;&amp;amp; other.m_altitude==m_altitude &amp;amp;&amp;amp; other.m_start==m_start &amp;amp;&amp;amp; other.m_x==m_x &amp;amp;&amp;amp; other.m_y==m_y)&lt;br /&gt;    {//control#1: to check Flight I.D.&lt;br /&gt;        fprintf (stderr, "Equality Operator runs to #2\n");&lt;br /&gt;        if (strlen(m_name)!=strlen(other.m_name) || m_name==0 || other.m_name==0)//if not the same length or either is NULL, not equal&lt;br /&gt;            return false;&lt;br /&gt;        fprintf (stderr, "Equality Operator runs to #3\n");&lt;br /&gt;        for (int i=0; strlen(m_name); i++)&lt;br /&gt;            if (m_name[i]!=other.m_name[i])//if unique characters exist, not equal&lt;br /&gt;                return false;&lt;br /&gt;        fprintf (stderr, "Equality Operator runs to #4\n");&lt;br /&gt;        return true;//if it passes all other tests then objects, equal&lt;br /&gt;    }//end control#1&lt;br /&gt;    else&lt;br /&gt;        return false;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Here's the relevant stderr output:&lt;br /&gt;Equality Operator runs to #1&lt;br /&gt;&lt;br /&gt;The program has unexpectedly finished.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;James</description></item><item><title>Getting into the gaming world</title><link>http://community.lionhead.com/forums/thread/3409885.aspx</link><pubDate>Tue, 06 Oct 2009 13:37:22 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3409885</guid><dc:creator>mikeallen123</dc:creator><slash:comments>2</slash:comments><comments>http://community.lionhead.com/forums/thread/3409885.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3409885</wfw:commentRss><description>I've want to be a games designer for years now &lt;br&gt;i live in the UK and am allowed to go to any uni in the UK i want&lt;br&gt;the problem is I'm not sure which on &lt;br&gt;what in your opinion would be the best and what course &lt;br&gt;&lt;br&gt;</description></item><item><title>C++ Learning</title><link>http://community.lionhead.com/forums/thread/3044619.aspx</link><pubDate>Sun, 31 Aug 2008 19:58:22 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3044619</guid><dc:creator>YourAngel</dc:creator><slash:comments>47</slash:comments><comments>http://community.lionhead.com/forums/thread/3044619.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3044619</wfw:commentRss><description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;My name is Andy, and i'm a 13 year old Swedish... Teen.&lt;/P&gt;
&lt;P&gt;A while now, i've been looking away from my usual modding to take a look at C++ which nowadays is a MUST in the game industry apparently. So for the past two days i've been reading through the awful &lt;A href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/TOC1"&gt;http://en.wikibooks.org/wiki/C%2B%2B_Programming/TOC1&lt;/A&gt;&amp;nbsp;C++ Wiki Book.&amp;nbsp; I really started thinking it was supposed to be that hard to learn CPP programming. But a friend told me that Wiki Books are usually overly difficult, at this point i jumped around in happiness thinking that there might still be some way for me to learn it. &lt;/P&gt;
&lt;P&gt;So right now i'm looking at &lt;A href="http://www.dummies.com/WileyCDA/DummiesTitle/C-For-Dummies-5th-Edition.productCd-0764568523,subcat-PROGRAMMING.html"&gt;http://www.dummies.com/WileyCDA/DummiesTitle/C-For-Dummies-5th-Edition.productCd-0764568523,subcat-PROGRAMMING.html&lt;/A&gt;&amp;nbsp;this.&amp;nbsp; The description there says that the CD will cover everything other than the guidance from the book. However, in my experience,&amp;nbsp;you would need mathematical skills in stuff like algebra, trignomethry etc etc to work with CPP. &lt;/P&gt;
&lt;P&gt;I would persistantly motivate my dad to let me buy that book, but i don't want to spend money on something i wouldn't understand for several years yét. So is it possible for me to actually learn CPP without a super high maths-certificate?&lt;/P&gt;
&lt;P&gt;And my other question...&amp;nbsp; I've seen different feedback on that book, is it really user-friendly?&amp;nbsp; Despite being 13 years old i am not an idiot, i can pick up&amp;nbsp;difficult things, but that Wiki Book was just way beyond me, is this book going to be same?'&lt;/P&gt;
&lt;P&gt;Thanks for any answers!&lt;/P&gt;</description></item><item><title>Programmer needed to help with Dungeon Keeper2</title><link>http://community.lionhead.com/forums/thread/3319959.aspx</link><pubDate>Sun, 29 Mar 2009 19:59:48 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3319959</guid><dc:creator>hubutton</dc:creator><slash:comments>2</slash:comments><comments>http://community.lionhead.com/forums/thread/3319959.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3319959</wfw:commentRss><description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I bet some of you have heard about the Dungeon Keeper games, in my opinion the best&amp;nbsp;game serie(ok he didn't work with DK2) created Peter Molyneux.&lt;/P&gt;
&lt;P&gt;Im part of the last active DK community, and since none of us in the community knows nothing about programming, I decided this could be the best place to start looking for help to our problem.&lt;/P&gt;
&lt;P&gt;I will go straight to the point, and assume you know what Im talking about:&lt;/P&gt;
&lt;P&gt;DK2 editor is&amp;nbsp;clearly unfinished, because you cannot make working mercenary portals with it. There seems to be some variables that make the portals work, but it is not possible to change those with the editor, since Bullfrog forgot/didn't bother to add that function.&lt;/P&gt;
&lt;P&gt;Im looking for someone that could either upgrade the editor and add that function, or atleast tell how it could be done or can it even be done.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description></item><item><title>Programmers, how did You get started?</title><link>http://community.lionhead.com/forums/thread/3331642.aspx</link><pubDate>Sat, 25 Apr 2009 21:09:41 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3331642</guid><dc:creator>Rectov</dc:creator><slash:comments>8</slash:comments><comments>http://community.lionhead.com/forums/thread/3331642.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3331642</wfw:commentRss><description>Hi there, I'm really struggling to get to grips with programming. I don't know if it's the resources I'm using, or if I'm just too thick to get to grips with it. I have read the thread about how to get started which recommends Java then C then C++ route. I can see the wisdom but even with Java I face the same problem, that every tutorial seems to demand I become conversant in about ten-billion different things before I can even contemplate doing anything interesting.&lt;br&gt;&lt;br&gt;I just want to begin playing with graphics and take it from there. Is there any hope? : )&lt;br&gt;&lt;br&gt;Whilst I'm bitching, I'm always hitting that same wall I've heard other people talk about that means it can takes hours to learn what feels like nothing. I think this is because of the number of tutorials that aim to teach a language outside of any particular kind of programming discipline. Isn't there a book called "Learning to program C++ in the context of learning how to write games in the context of the commercially available programs that real developers use"? Which progresses in a first you learn to get a screen, then plot point, draw lines, make polygons, animate characters, double and triple buffers, etc. Instead of all this pony about writing a GUI for Windows using windows widgets, which nobody in their right mind would want to do!&lt;br&gt;</description></item><item><title>General Tools and tutorials needed to make A game?</title><link>http://community.lionhead.com/forums/thread/3403976.aspx</link><pubDate>Tue, 15 Sep 2009 15:19:27 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3403976</guid><dc:creator>rockhopperseanly</dc:creator><slash:comments>2</slash:comments><comments>http://community.lionhead.com/forums/thread/3403976.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3403976</wfw:commentRss><description>I want to make a game but I dont know what tools I know to make it with, I know c++, but what else?&lt;br /&gt;&lt;br /&gt;And if so, what tutorials would you recomend? To make a simple game?&lt;br /&gt;&lt;br /&gt;And if your bored, Why not help me make it.</description></item><item><title>website development questions</title><link>http://community.lionhead.com/forums/thread/3372270.aspx</link><pubDate>Wed, 08 Jul 2009 17:46:31 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3372270</guid><dc:creator>kev670</dc:creator><slash:comments>4</slash:comments><comments>http://community.lionhead.com/forums/thread/3372270.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3372270</wfw:commentRss><description>I have 2 questions.&lt;br /&gt;I usually build static websites but i have been asked to make a website for an owner of a bar. They want to be able to update an events page regularly. What ways would you recommend for me to implement this. I'd rather not use a google calendar. Is there any way of being able to write short messages on the site without having to go through the code&lt;br /&gt;&lt;br /&gt;Secondly, How much is a reasonable price to charge for a fully function website. &lt;br /&gt;&lt;br /&gt;Any help would be great thanks</description></item><item><title>might and magic</title><link>http://community.lionhead.com/forums/thread/3407257.aspx</link><pubDate>Sat, 26 Sep 2009 19:50:44 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3407257</guid><dc:creator>copperdog34</dc:creator><slash:comments>0</slash:comments><comments>http://community.lionhead.com/forums/thread/3407257.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3407257</wfw:commentRss><description>now i need alittle help with a gam ethats been trobling me dearly this game is called dark messigh might and migic and what i need help on is the location of the earth fire sword please will somone help me find or tell me where i can find it? thx any help will be apprecheated!&lt;img src="/emoticons/emotion-2.gif" alt="Big Smile [:D]" /&gt;</description></item><item><title>Programming and its Connection to Math</title><link>http://community.lionhead.com/forums/thread/2927039.aspx</link><pubDate>Wed, 28 May 2008 01:17:34 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:2927039</guid><dc:creator>PCRYJ</dc:creator><slash:comments>20</slash:comments><comments>http://community.lionhead.com/forums/thread/2927039.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=2927039</wfw:commentRss><description>&lt;P&gt;I'm a fairly new programmer(C++), and I have had&amp;nbsp;a few questions about programming as it becomes&amp;nbsp;more complicated and complex that I never seemed to find the answer to.&amp;nbsp; &lt;STRONG&gt;Do you have to be &lt;img src="/emoticons/g_o_o_d.gif" alt="G o o d [Good]" /&gt; at math to be a &lt;img src="/emoticons/g_o_o_d.gif" alt="G o o d [Good]" /&gt; programmer?&lt;/STRONG&gt;&amp;nbsp; I'm asking this because I am concerned at the fact that I'm not exactly &lt;img src="/emoticons/g_o_o_d.gif" alt="G o o d [Good]" /&gt; at math(English is more of my thing), but so far I am enjoying programming at a simple level.&amp;nbsp; Also, &lt;STRONG&gt;as programming&amp;nbsp;becomes more complex, meaning development level of AAA games (Fable 2), what type of math is invloved?&amp;nbsp; Can you get by with just a simple understanding of certain math topics?&lt;/STRONG&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;-&amp;nbsp;If anyone from the community or hopefully someone from Lionhead, could answer any of these questions for me, or just give me some suggestions, that would be greatly appreciated! &lt;img src="/emoticons/^^.gif" alt="^^ [^^]" /&gt;&lt;/P&gt;</description></item><item><title>Programming basics.</title><link>http://community.lionhead.com/forums/thread/3398246.aspx</link><pubDate>Mon, 31 Aug 2009 08:39:07 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3398246</guid><dc:creator>Ash692</dc:creator><slash:comments>2</slash:comments><comments>http://community.lionhead.com/forums/thread/3398246.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3398246</wfw:commentRss><description>Hey Everyone,&lt;br /&gt;&lt;br /&gt;Haven't been on this sub section before, but I feel it's the right time with college in a week.&lt;br /&gt;&lt;br /&gt;I'm studying IT for 2 years at college, the curriculum is really really detailed. I'll be doing programming,designing,website design,softwarfare designing, game dev, so lots.&lt;br /&gt;&lt;br /&gt;I was wondering if anyone knew of any free programmes on where I can maybe catch up on some basics of programming (C++,C)&lt;br /&gt;&lt;br /&gt;It would be incredibly helpful because I could learn from it before college and in my free time. &lt;br /&gt;&lt;br /&gt;Thanks &lt;br /&gt;&lt;br /&gt;~Ash</description></item><item><title>Tools Used For Fable</title><link>http://community.lionhead.com/forums/thread/3397971.aspx</link><pubDate>Sun, 30 Aug 2009 20:10:32 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3397971</guid><dc:creator>Lady_Grey</dc:creator><slash:comments>5</slash:comments><comments>http://community.lionhead.com/forums/thread/3397971.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3397971</wfw:commentRss><description>What tools were used to make Fable other than the unobtainable FableEd? Does anyone know? Can anyone provide links?</description></item><item><title>What events happen in a programmers day to day life? </title><link>http://community.lionhead.com/forums/thread/3360575.aspx</link><pubDate>Tue, 02 Jun 2009 09:02:55 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3360575</guid><dc:creator>automission</dc:creator><slash:comments>4</slash:comments><comments>http://community.lionhead.com/forums/thread/3360575.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3360575</wfw:commentRss><description>Is it as simple as knowing how to code, sitting down and typing lines and lines of code out? That alone sounds complex to me, but I assume once you know how to code, it is a easy as speaking your native language? &lt;br&gt;&lt;br&gt;I ask as I often ponder taking courses in programming, but I'm still quite unsure on it. Hell i need to know coding to get into testing, so I'l need to learn coding regardless. &lt;br&gt;</description></item><item><title>Is programming for me?</title><link>http://community.lionhead.com/forums/thread/3390802.aspx</link><pubDate>Fri, 21 Aug 2009 18:04:08 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3390802</guid><dc:creator>Elite3van</dc:creator><slash:comments>3</slash:comments><comments>http://community.lionhead.com/forums/thread/3390802.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3390802</wfw:commentRss><description>I have recently been thinking about my life after school. I am currently 13 and have a passion for games. I'm smart (I think). I'm top in my maths class, science class and IT class, and I am a musician for my county. I really want to become a programmer, but is it too hard/ambitious for me. I have tried Visual Basic but it looked sooo complicated I gave up. Here's my rough plan for the future.&lt;br&gt;&lt;br&gt;GCSE:&lt;br&gt;Including&lt;br&gt;Maths&lt;br&gt;Further Maths&lt;br&gt;Triple Science&lt;br&gt;I.C.T&lt;br&gt;Music&lt;br&gt;&lt;br&gt;AS Levels:&lt;br&gt;Music (Or further maths if there is that)&lt;br&gt;Physics&lt;br&gt;Maths&lt;br&gt;I.C.T&lt;br&gt;&lt;br&gt;A Levels:&lt;br&gt;Physics&lt;br&gt;
Maths&lt;br&gt;
I.C.T&lt;br&gt;&lt;br&gt;Uni:&lt;br&gt;Maths&lt;br&gt;Computer Science (preferably with a year in industry)&lt;br&gt;&lt;br&gt;I was thinking I could go Lionhead for work experience and their graduate program thing.&lt;br&gt;&lt;br&gt;But is programming for me? I've also heard that it really sucks. I am, to quote, in a kerfuffle!!!&lt;br&gt;&lt;br&gt;Please can you give me all of your advice!!! &lt;img src="/emoticons/icon14.gif" alt="Up [:up:]" /&gt;&lt;br&gt;&lt;br&gt;</description></item><item><title>New to programming, thinking about taking some classes and more</title><link>http://community.lionhead.com/forums/thread/3380556.aspx</link><pubDate>Sat, 01 Aug 2009 02:52:11 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3380556</guid><dc:creator>Michigan52</dc:creator><slash:comments>14</slash:comments><comments>http://community.lionhead.com/forums/thread/3380556.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3380556</wfw:commentRss><description>&lt;P&gt;Hey guys im pretty new to programming like the past week or so new and im learning the basics of HTML and C++. I started looking into it because i love video games and was trying to think what i could do to get into the field of making them. I was just wondering what people think of as a &lt;img src="/emoticons/g_o_o_d.gif" alt="G o o d [Good]" /&gt; way to get started like things to read or things to work on. I am still in highschool and my school offers a few classes in programming. Not many but a few. I was thinking about getting a couple books and taking the classes seeing if i enjoy it/understand it. Im also pretty &lt;img src="/emoticons/g_o_o_d.gif" alt="G o o d [Good]" /&gt; at art so i was thinking more down the line of graphics programming. I was also wondering if were to enjoy/understand it then what would people with more expeirence or jobs in the field think i would want to take major in in college. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the help guys&lt;img src="/emoticons/emotion-2.gif" alt="Big Smile [:D]" /&gt;&lt;/P&gt;</description></item><item><title>How do Achievements work?</title><link>http://community.lionhead.com/forums/thread/3319966.aspx</link><pubDate>Sun, 29 Mar 2009 20:33:23 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3319966</guid><dc:creator>Fata1moose</dc:creator><slash:comments>6</slash:comments><comments>http://community.lionhead.com/forums/thread/3319966.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3319966</wfw:commentRss><description>Somthing&amp;nbsp; always wanted to know how do developers make them work how does the game know when you got one? pretty much just the general basis behind it.</description></item><item><title>The windows communication foundation is a nightmare!</title><link>http://community.lionhead.com/forums/thread/3375267.aspx</link><pubDate>Sat, 18 Jul 2009 17:43:04 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3375267</guid><dc:creator>Pandilex2</dc:creator><slash:comments>3</slash:comments><comments>http://community.lionhead.com/forums/thread/3375267.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3375267</wfw:commentRss><description>I spent a long time with sockets in C#, a very very long time indeed. They were poorly documented and caused me no end of grief with bizarre quirks and such. &lt;br /&gt;&lt;br /&gt;I finally decided to make the move to the WCF to see if I it was easier to get along with, but I have found it to be a nightmare so far... there is also a laughable amount of documentation and tutorials available for it, so I was wondering if anyone has had any success with it.&lt;br /&gt;&lt;br /&gt;All I want to do is have a server, and a client, making a tcp connection and sending data back and forth.&lt;br /&gt;&lt;br /&gt;After a huge amount of struggling on my own, I gave up and bought a c# book that covers it in one chapter. I followed the tutorial and made a simple http based server/client. I then tried to adapt it to using tcp, and now svcutil can't generate me a client because "the connection was closed by the remote host". The same thing worked fine before I switched it over to tcp...&lt;br /&gt;&lt;br /&gt;It's driving me nuts, I have been trying to get it working for 3 days now and it's all trial and error... does anyone have any advice?</description></item><item><title>need some buddies</title><link>http://community.lionhead.com/forums/thread/3366387.aspx</link><pubDate>Fri, 19 Jun 2009 01:01:11 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3366387</guid><dc:creator>tadg50</dc:creator><slash:comments>2</slash:comments><comments>http://community.lionhead.com/forums/thread/3366387.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3366387</wfw:commentRss><description>&lt;P&gt;&lt;FONT size=3&gt;hey i need some buddies to play with and a little help with some quest.mainly just want to play with other people.my gamer tag is TadG50 or you can just leave ur gamer tag and i can add you.&lt;img src="/emoticons/g_o_o_d.gif" alt="G o o d [Good]" /&gt;&lt;img src="/emoticons/glasses.gif" alt="Glasses [8)]" /&gt;&lt;img src="/emoticons/dead.gif" alt="Dead [:notalive:]" /&gt;&lt;/FONT&gt;&lt;/P&gt;</description></item><item><title>learn iphone programming</title><link>http://community.lionhead.com/forums/thread/3366450.aspx</link><pubDate>Fri, 19 Jun 2009 11:55:34 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3366450</guid><dc:creator>mobil1</dc:creator><slash:comments>1</slash:comments><comments>http://community.lionhead.com/forums/thread/3366450.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3366450</wfw:commentRss><description>thought i'd let you know of an online iPhone Course that teaches aspiring students via video, pdf and one-on-one lessons. Its not that expensive ($200) and there is a $50 rebate if you use the code AZV while registering.&lt;br&gt;&lt;br&gt;You also get to work and co-publish your first live industrial iphone project (game or application) on the official Apple Appstore, and you get to keep 80% of the revenues as part of a co-publishing deal with the company that runs the online iPhone classes. This means that you can essentially earn back the money and time that you put into this, many times over in a matter of a few months!&lt;br&gt;&lt;br&gt;Interested people will need to register ASAP, as they are quickly approaching maximum capacity and will not be able to entertain an excessive number of students. Visit the link - &lt;a&gt;learn iphone tutorials to sign up today!&lt;/a&gt;&lt;br&gt;&lt;br&gt;</description></item><item><title>Where Do I Start?</title><link>http://community.lionhead.com/forums/thread/3359348.aspx</link><pubDate>Sat, 30 May 2009 19:41:05 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3359348</guid><dc:creator>ArrowGoBooom</dc:creator><slash:comments>1</slash:comments><comments>http://community.lionhead.com/forums/thread/3359348.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3359348</wfw:commentRss><description>Hi,&lt;br /&gt;&lt;br /&gt;I am a graduate who is interested in the game programming field. I would eventually like to work for Lionhead Studios on Fable 3 but, need advice on where i should start. I have some knowledge of c/c++(very little), java, flash, html, css and javascript(graduate related - 7 month course). What would i need to learn in order to work at Lionhead Studios more c/c++ or another programming language?&lt;br /&gt;&lt;br /&gt;Sincerely,&lt;br /&gt;&lt;br /&gt;ArrowGoBooom&lt;br /&gt;&lt;br /&gt;P.S. I have a website where i am doing a remake of pong for the Atari 2600 using 6502 assembly language, but it is currently down. The url is &lt;a href="http://6502pong.110mb.com" target="_blank" title="http://6502pong.110mb.com"&gt;http://6502pong.110mb.com&lt;/a&gt;, and i hope to have it up very soon. Also i briefly looked at Alice 2.0 but was put off by it being a point and click language and not a hardcore code wise language.</description></item><item><title>Age-old 2D games programming problem. Are you smart enough to solve it?</title><link>http://community.lionhead.com/forums/thread/3327512.aspx</link><pubDate>Thu, 16 Apr 2009 19:55:10 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3327512</guid><dc:creator>Rectov</dc:creator><slash:comments>18</slash:comments><comments>http://community.lionhead.com/forums/thread/3327512.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3327512</wfw:commentRss><description>Hi there,&lt;br&gt;&lt;br&gt;I wanted help solving a technical problem a friend has given to me. In fact, both me and my friend have our own solutions but we don't like them because we both feel certain there must be a better, more efficient way than how we're doing it.&lt;br&gt;&lt;br&gt;The basis is simple: Given a specific speed, how do you get from A to B in 2D?&lt;br&gt;&lt;br&gt;The exact scenario is typical of zillions of games. An alien baddy wants to shoot you with a missile he can point. We're not worried about the graphics here at all, only the path the missile will take. Assume the screen refreshes at 60Hz (which it does) and out game will sync. We have a fixed speed for the missile of V pixels/frame. My friend is using an integer V, but I'd think you might like to have a fixed point. The speed can vary from bullet to bullet, but it's constant once the bullet is fired. Simple so far?&lt;br&gt;&lt;br&gt;Now both my friend and I have bothered to come up with answers of out own to this question and both of like neither of our answers. His is not realistic enough and mine is more realistic but too math heavy. His basically works out along which axis the bullet will travel fastest and makes the bullet travel at SPEED pixels per frame in that axis. After dividing to find the ratio of X to Y he then uses a variant of Bresenhams algorithm to calculate the speed in the Other axis (i.e. Substracting the fraction away from the start distance once per frame (and storing the answer for next time) until the subtraction underflows, then adding back on the length you first thought of).&lt;br&gt;&lt;br&gt;The trouble with this is that all bullets always travel at SPEED pixels/frame in one or the other aixs, meaning the more diagonal the bullet direction, the more unnaturally fast the bullets move. In other words, if we fired a wide shot at a wall, the bullets would all hit the wall at the same time.... they should hit the closer part of the wall first. Get it?&lt;br&gt;&lt;br&gt;My version also sucks. I get the exact right result, mathmatically speaking, but I'm using trig to get it, which includes a square root and two divides per missle shot. This takes ACRES of CPU time and the solution was discarded without implementation for being too CPU intensive. I agree. This is an answer but not a Result!&lt;br&gt;&lt;br&gt;Can you *please* think of a better solution?&lt;br&gt;</description></item><item><title>second post</title><link>http://community.lionhead.com/forums/thread/3342707.aspx</link><pubDate>Mon, 11 May 2009 00:55:19 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3342707</guid><dc:creator>Bob78bob</dc:creator><slash:comments>1</slash:comments><comments>http://community.lionhead.com/forums/thread/3342707.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3342707</wfw:commentRss><description>this is my scond post&amp;nbsp; because ive gotten some links but non start at the very beginning with what program i need to even write the language i have no knowlage at all about this stuff i dont know where to look and if you say&amp;nbsp;"start with java or what ever and use the program hh25" i wont know what you mean like a IDE or things like that?¿?</description></item><item><title>Programming</title><link>http://community.lionhead.com/forums/thread/3339680.aspx</link><pubDate>Thu, 07 May 2009 01:11:24 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3339680</guid><dc:creator>Bob78bob</dc:creator><slash:comments>4</slash:comments><comments>http://community.lionhead.com/forums/thread/3339680.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3339680</wfw:commentRss><description>&lt;P&gt;¿¿¿ I have never ever even looked at programming but i would like to start is there any free links or programs that can teach me about either script writing or programming plz post link...&lt;/P&gt;</description></item><item><title>How important is math and/or what topics do I need to learn. ( GCSE Student)</title><link>http://community.lionhead.com/forums/thread/3308607.aspx</link><pubDate>Tue, 24 Feb 2009 00:52:47 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3308607</guid><dc:creator>xchris92x</dc:creator><slash:comments>22</slash:comments><comments>http://community.lionhead.com/forums/thread/3308607.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3308607</wfw:commentRss><description>I felt I needed to get this information before it is too late. How important is maths when it comes to programming I usually range from a mid/ high c. Should I just forget about or is it possible to be a &lt;img src="/emoticons/g_o_o_d.gif" alt="G o o d [Good]" /&gt; programmer being an average maths student.&lt;br /&gt;&lt;br /&gt;Also what topics would I need to learn or are there any programming tutorials that may come in handy. &lt;br /&gt;&lt;br /&gt;Chris.</description></item><item><title>Web Services and Remoting</title><link>http://community.lionhead.com/forums/thread/3315893.aspx</link><pubDate>Tue, 17 Mar 2009 05:30:07 GMT</pubDate><guid isPermaLink="false">268911ed-2331-43fa-88af-667744ac8d5f:3315893</guid><dc:creator>knowmezakir</dc:creator><slash:comments>0</slash:comments><comments>http://community.lionhead.com/forums/thread/3315893.aspx</comments><wfw:commentRss>http://community.lionhead.com/forums/commentrss.aspx?SectionID=12&amp;PostID=3315893</wfw:commentRss><description>How to learn web services and remoting i do not have idea of Remoting i know some theoretical knowledge of Web Services can you please suggest me&lt;br&gt;Thanks &lt;br&gt;&lt;br&gt;</description></item></channel></rss>