Monday, July 22, 2013

Lost in Mechanics


It's easy to dislike one's own work, even when it works. And there are many questions about what the heck does it even mean for mechanics to work or to not work. There are things you could easily argue don't work, and yet they might. Is a game bad because it relies too much on luck? What exactly is the goal of your mechanic? Do you want someone to play your game once and be done, or do you want them to have the urge to play it at any moment. The difference between Angry Birds and Trackmania is enormous, when one forces you to deal with a seemingly random set of physics outcomes, while the other gives you precisely what you want, provided you can indeed press at exactly the right moment.

I've been making luck based games lately, and it's really annoying. I didn't want to do this. I've been creating scenarios where things are just balanced enough that the player is at the whims of the random seed generated that playthrough. I've got a boardgame where every player has such an opportunity to be the winner that it ends up being almost luck-based. Give every player a chance to come back to the victory, and you don't know which player will draw that straw.

There has to be a point where you decide that you're just going to move forward with the mechanic, but it's tough when you can't tell if that mechanic is what you wanted it to be. Making a game about choosing paths in life, I don't know what I'm writing anymore.
ufdshidfjskal;
this all means jack diddly.
ooooh joy.
more product that's product that doesn't go anyhwere because I can't fuckin move beyond this weird sophomore slump, right? it's easy to draw goats. it's hard to make something new. or to want to make something new.

I left that game behind, that bathtub game behind because I'm making toys. I can't seem to make a system that's got true meaning mixed with control. so here we go again with that. Should I finish this thing? I think I should, but who really knows anymore. I just have to keep pushing, but for now and I can just draw goats. Goats jumping, hhhere we go! Everyone likes something that they know already. I wish i could make the new mechanics more quickly. I could pinpoint whenwhy it works or not.

It's the curse. games are systems, and I don't know where the entry point for the system is . or how You should be affecting it or if you should have a real say, or if you care about how it looks. you shouldn't care how it looks I think. But that's discounting the power of aesthetic. A system is representative, right? or is it entirely abstracted. Oh boy, Okay, I need to just go not think for a couple hours. And get back tro drawering things in the morning.

Saturday, March 16, 2013

Let love be. Beyond all laws and boundaries.

You can argue there's no goal in life, but I have to respond with love. Or I must try. Those heartbeats of space and time, those pulsing rhythms deep in our minds, that is the yearning to love.

We must yearn to love. Life is a never-ending yearning. The heart should yearn for love as much as it does love.

We hurt each other, we hurt ourselves, in that denial of love.

It's not about acceptance, it's not about tolerance. Love is deeper than tolerance, it's understanding. It's an embrace. Love consumes. Love is all. And where there is love, there is life.

Let love be. Beyond all laws and boundaries. Love is one.

Friday, March 15, 2013


Just now Ian came up and spoke to me over my shoulder as I was drawing Escape Goat 2 art. On my headphones the immensely dramatic climax of M83's song "Wait" was pulsing through my tiny earbuds. I quickly tapped the F8 key on my Macbook to pause the beautiful moment of creation and catharsis and art that someone had created thousands of miles from here, across an ocean. We chatted briefly about the programming he had just done, making it easier to fit more art into our game at less cost to file size. We finished talking and I hit F8 again. The pounding climax returned at full force, as the particles of noise instantaneously resumed from their frozen state, the emotion waiting for me to call. It could have waited forever.

Sunday, August 19, 2012

Game Center Leaderboard Dismissal on iPad vs. iPhone

A random piece of knowledge I send off to you for whom it may help.

I used Cocos2d and Ganbaru Game's Game Center helper to integrate Game Center into Dead End, an iOS game of mine.

However, upon converting the game to Universal, I found two problems.

1. GameCenter wouldn't pop up on iPad.
To resolve this, you have to change the modalPresentationStyle for your leaderboard.  The default does not work on iPad.

So this is my showLeaderboard code, with an added line for iPad/iPhone integration.
- (void)showLeaderboardForCategory:(NSString *)category
{
    if (hasGameCenter)
    {
        GKLeaderboardViewController *leaderboardController = [[GKLeaderboardViewController alloc] init];
        if (leaderboardController != nil)
        {
            myViewController = [[UIViewController alloc] init];
            
            leaderboardController.leaderboardDelegate = self;
            leaderboardController.category = category;
            leaderboardController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;

            if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
                leaderboardController.modalPresentationStyle = UIModalPresentationFullScreen;
            else
                leaderboardController.modalPresentationStyle = UIModalPresentationFormSheet;
            
            [[[[CCDirector sharedDirector] openGLView] windowaddSubview:myViewController.view];
            [myViewController presentModalViewController:leaderboardController animated:YES];
        }
        [leaderboardController release];
    }
}

2. When I was dismissing the leaderboard on iPad, touch controls stopped working.

On iPhone/iPod, the dismissal code looked like:
- (void)leaderboardViewControllerDidFinish:(GKLeaderboardViewController *)viewController
{
    [myViewController dismissModalViewControllerAnimated:YES];
    [myViewController.view.superview removeFromSuperview];//I added this to Ganbaru's code
    [myViewController release];
}

On iPad, however, instead of [myViewController.view.superview removeFromSuperview], it should only be [myViewController.view removeFromSuperview].  I'm not sure why, but it works for me.

Thus, to get leaderboard dismissal to work on both iPhone AND iPad, the full code should be:
[code]
- (void)leaderboardViewControllerDidFinish:(GKLeaderboardViewController *)viewController
{
    [myViewController dismissModalViewControllerAnimated:YES];

    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
        [myViewController.view.superview removeFromSuperview];
    else
        [myViewController.view removeFromSuperview];
    
    [myViewController release];
}

Hope this is useful for someone!

Tuesday, January 24, 2012

Gradients

I work in a youth homeless shelter once a week, and I do it as much for myself as for the kids. These are 18-25 year olds. They are officially adults, but this shelter was started because these poor castaways would otherwise go from foster homes and under-age care one day to rough homeless shelters and rougher streets the next. We consider them adults, but tell me that upon graduating high-school you were ready to go live in a shelter with grizzled 50 year old homeless folk.


There's a gradient to our maturity. Some of us never learn any, others learn too much. So many of these youth are struggling just to get beyond an immature and volatile world that left them in poor health and poor preparation for life. The life they know is beyond me to understand. I've been lucky. There's a gradient of people that are in the shelter. There are youth who are escaping abuse at home, others struggling with drugs, some whose homes were too poor to support them, still others who have never known a real home. There are those who are beating the challenges, those who may beat them, and others who will lose. There are more than a fair share struggling with mental health problems. There are youth I enjoy seeing, others I would have a hard time tolerating, were it my job to maintain order in the shelter.


Far above these struggles, and yet just as important, are high level government decisions, high level business and world market struggles. There are people who want laws to control everything we do. Others want laws to control none of what we do. And still more who see decisions one way over here and another over there. There are decisions about who to hire, who to fire, who to support, who to let down.


Don't mistake life for anything but a gradient. I learned that in art the use of pure black and the use of pure white are rarely desired. Give some texture, throw in some tint of a color. Life is better this way if we accept that our beauty and strength lies in the texture, the variety, and that such variety should be embraced.


And that's why, when we look at our troubles, at our struggles, the solution lies not in changing the individuals, because we will never win that battle, but in changing the rules of how we operate as a society. We need to change the rules that help people, that raise kids. We need to fix how we operate, and accept and embrace variety and diversity. We know that things are never black and white, so we need to keep working on the rules. And we will never finish fixing and refining, because the system always changes. But as long as we look at the system as much and more than we attack individual cases, then we might make progress.


I look at the youth in the shelter, and I know with a fairly heady certainty that we needed to help these kids long ago. We needed to feed some of them better food, we needed to teach others better discipline, we needed to find many of them better parents. But they are going to struggle now because their world's rules were defined and built long ago. There are billions yet to come, why not change the game rather than trying to mess with the pieces?

Thursday, December 22, 2011

A Letter To Barack Obama

I respect you Mr. President. But I am wavering.

Your intellect, the knowledge and awareness you have in regard to so many national issues far exceeds the typical politician. You are not a politician to me. You are someone who is fighting by using facts, who is fighting by using reasoning as your weapon. I love listening to you debate and discuss issues.

You are willing to talk, to compromise, to think in larger terms. Our country is immense, and you stand there to represent millions of different views on millions of different subjects.

When you talk, I listen. When you say something, I think on it.

And when you take a stance, I hear what your beliefs and values are.

When you back down, you lose me. You have the heart so many of us have. I've heard it numerous times in the way you speak. So stop backing down. Stand up and make your point and stick with it. No one is happy with congress, why should you accept them either? You are the voice of us.

I support much of what you have done and what you say you want to do. Take advantage of that and stop compromising. Be what you feel, because I know there's intelligence and respect behind your beliefs.

There is a fight upon us, and your backing down only defers the inevitable clash and makes it worse.

Sunday, October 16, 2011

Thoughts on Occupy Wall Street

We are forever beholden to the regimes and systems and networks that run our lives. This is as true now as it was two thousand years ago. We can decry the hurt that we have endured because of unfair policies and rule, and we should be thankful for the successes and innovations brought about by such governing.


As we become more aware of those around us, we are more conscious of the successes and failures of those same groups and individuals.


-


Occupy Wall Street, to me, is the public discontent arising from the realization that one form of success is trumping all others in this country and elsewhere, even when it causes harm.


Most people want to be rich, sure, but for one reason: to take their woes away. Money solves problems. You can solve every problem in your life if you just have the money to pay for the solution. Money pays to resolve problems, and it also pays for leisure, recreation, and entertainment. But that's it.


Most people want to work and then call it a day. Most people want to have time with friends and family, time alone, time learning more about something they love, time for recreation, time to eat.


Occupy Wall Street is about an inability by the leaders of business to see the small things in life, to only see this one element of life.


It is a backlash from people who do not care about being rich, they only care about having enough. In America it is not considered enough to own a restaurant on a corner where you can make your living, pay your employees, and call it a day. No, you are expected to expand to a second location, and then four more. To make more money.


And here's why you are expected to go the extra mile for money: because if you slip up, you better have that money ready. Because these days it only takes a single car accident or one tough month or one ailing relative to cost thousands upon thousands of dollars of damage. For those who are not rich, it might be years to recover. Perhaps they will never recover. You wanted just enough, but enough is no longer good enough. Now you are forever in the red.


We are told that every second of our time matters, every cent of our dollar has meaning. It only has meaning because it has gained meaning by those who care about money. And we are more numb to every cent because of this. Because there is no more context.


Money does not matter. Everything else matters, and we are discontented now because we see money being valued over everything else. Money should be just one of many conduits through which we stabilize, reinforce, and improve our environment and ourselves, and until we see those who would be our leaders of the financial and political world embrace these same ideals, we will be discontented.


OWS is a backlash to the soul-sucking efforts to wrest every dollar back from the majority of people who want nothing more than to live peaceably in harmony with the systems around them. When money becomes the problem, not the solution, it needs to be dealt with.