PaulC's Bits & Bobs
Moderator: Graphics Moderators
PaulC's Bits & Bobs
Rather than having lots of separate topics on the go, I wanted to have a place where I can post all of my half-arsed ideas and random stuff. So that's what this is. I can't promise great things, I'd say my talents as a coder and artist are "limited" at best, but I like tinkering with stuff and maybe some of you will be into it. Comments, crits and whatever else welcome!
My projects: New Town Names | Snow Aware Arctic Buildings | Custom Buildings | Funny Cars | Mini GRFs | Bits & Bobs
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Re: PaulC's Bits & Bobs
So, over in another topic I posted about this old airport GRF. It's pretty old, unlicenced, I have no idea who made it and it's basically cobbled together from bits of the original base set. But I also think it's pretty nifty, and it would be a simple task to recreate it from scratch using OpenGFX graphics. So that's what I did.
This is just a basic graphic replacement for the small airport. I like the idea of the fake road, but how best to make it compatible with different road sets, particuarly those that have an incompatible licence? The path of least resistance might be to have separate add-on GRFs that replace those two tiles. Maybe the whole thing wants recoding as a new airport? (Which I'd love to do BTW, if I can manage to wrap my head around the specs without going insane.)
Remains to be seen whether or not I do any more work on this, but here it is. Graphical credits go to the original OpenGFX artists (skidd13, Zephyris and others).
This is just a basic graphic replacement for the small airport. I like the idea of the fake road, but how best to make it compatible with different road sets, particuarly those that have an incompatible licence? The path of least resistance might be to have separate add-on GRFs that replace those two tiles. Maybe the whole thing wants recoding as a new airport? (Which I'd love to do BTW, if I can manage to wrap my head around the specs without going insane.)
Remains to be seen whether or not I do any more work on this, but here it is. Graphical credits go to the original OpenGFX artists (skidd13, Zephyris and others).
- Attachments
-
- OpenGFX Small Modern Airport.png (126.92 KiB) Viewed 10021 times
-
- small_airport.grf
- (22.02 KiB) Downloaded 630 times
My projects: New Town Names | Snow Aware Arctic Buildings | Custom Buildings | Funny Cars | Mini GRFs | Bits & Bobs
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Re: PaulC's Bits & Bobs
Nice.
I shouldn't worry about it. If anybody complains about it, just tell them that the Airport Authority ran out of paint and budget with which to buy some more.PaulC wrote:I like the idea of the fake road, but how best to make it compatible with different road sets,
wallyweb on tt-forums: Screenshots - Wallyweb World - Projects & Releases
wallyweb on Simuscape: Projects - Releases
Other Stuff: TTDPatch 2.6 "Nightly" download - cirdan's OpenTTD branch (New Map Features)
Screenshot Of The Month Contest Winner: August 2015 - Tied May 2016 - January 2018 - December 2018 - May 2019
wallyweb on Simuscape: Projects - Releases
Other Stuff: TTDPatch 2.6 "Nightly" download - cirdan's OpenTTD branch (New Map Features)
Screenshot Of The Month Contest Winner: August 2015 - Tied May 2016 - January 2018 - December 2018 - May 2019
Re: PaulC's Bits & Bobs
You could at least input the UK roads, as they are the most used (only type of fake diagonal roads in GarryG's objects, only roadtype for the fake tunnel in Dutch Stations Addition...)
Re: PaulC's Bits & Bobs
I was bored so I did this (excuse the not-especially-helpful commenting and poor coding style):
Screenshot just to show it works with whatever roadset is loaded, even if it doesn't match:
I was lazy and only replaced those two tiles but it seems to work OK. I'm not entirely sure I understand everything though so that might not be the "proper" way of doing it.
Code: Select all
3 * 11 00 11 02 02 21 // 2 properties to change, 2 buildings to change, starting at building 21
08 21 22 // substitute tile
09 21 22 // override tile
4 * 17 02 11 01 00 //
29 05 00 00 // ground sprite
00 00 00 00 // building sprite
00 00 // x, y offsets
00 00 00 // bounding box sizes
5 * 17 02 11 02 00 //
28 05 00 00 // ground sprite
00 00 00 00 // building sprite
00 00 // x, y offsets
00 00 00 // bounding box sizes
6 * 7 03 11 01 // action 3, airports, 1 sprite to change
21 // replaces id
00 // no new cargo ids
01 00 // use id
7 * 7 03 11 01 // action 3, airports, 1 sprite to change
22 // replaces id
00 // no new cargo ids
02 00 // use id
I was lazy and only replaced those two tiles but it seems to work OK. I'm not entirely sure I understand everything though so that might not be the "proper" way of doing it.
Re: PaulC's Bits & Bobs
Thanks for that buttercup, my NFO is a bit rusty but at first glance it looks reasonably straightforward. I was hoping it was possible to do something like that so I'm pleased to see it works. When I get time I'll have a proper look at the specs.
My projects: New Town Names | Snow Aware Arctic Buildings | Custom Buildings | Funny Cars | Mini GRFs | Bits & Bobs
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Re: PaulC's Bits & Bobs
Donald Trump, in glorious 32bpp extra zoom!
So basically this was just a fun little coding exercise I did over the holidays, but who knows, maybe some of you would like to have The Donald running your transport empires? I don't know if there's a more practical use for this sort of thing, but it would be pretty easy for people to create their own avatar grfs using the same method.
So basically this was just a fun little coding exercise I did over the holidays, but who knows, maybe some of you would like to have The Donald running your transport empires? I don't know if there's a more practical use for this sort of thing, but it would be pretty easy for people to create their own avatar grfs using the same method.
- Attachments
-
- COVFEFE Transport, 2018-01-28.png (206.1 KiB) Viewed 9787 times
-
- trump.grf
- (738.6 KiB) Downloaded 231 times
My projects: New Town Names | Snow Aware Arctic Buildings | Custom Buildings | Funny Cars | Mini GRFs | Bits & Bobs
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Re: PaulC's Bits & Bobs
Brilliant!
As a companion piece for your other topic, didn't somebody once upon a time code a White House HQ?
As a companion piece for your other topic, didn't somebody once upon a time code a White House HQ?
wallyweb on tt-forums: Screenshots - Wallyweb World - Projects & Releases
wallyweb on Simuscape: Projects - Releases
Other Stuff: TTDPatch 2.6 "Nightly" download - cirdan's OpenTTD branch (New Map Features)
Screenshot Of The Month Contest Winner: August 2015 - Tied May 2016 - January 2018 - December 2018 - May 2019
wallyweb on Simuscape: Projects - Releases
Other Stuff: TTDPatch 2.6 "Nightly" download - cirdan's OpenTTD branch (New Map Features)
Screenshot Of The Month Contest Winner: August 2015 - Tied May 2016 - January 2018 - December 2018 - May 2019
Re: PaulC's Bits & Bobs
Hello
Tschö, Auge
If I'm right, the White House HQ was part of the North American City Set (OzTrans's set?).wallyweb wrote:As a companion piece for your other topic, didn't somebody once upon a time code a White House HQ?
Tschö, Auge
Re: PaulC's Bits & Bobs
Wasn't it North American Roads? I'm sure I have it somewhere. Weren't those grfs at the centre of one of this forum's occasional s*** though?wallyweb wrote:As a companion piece for your other topic, didn't somebody once upon a time code a White House HQ?
My projects: New Town Names | Snow Aware Arctic Buildings | Custom Buildings | Funny Cars | Mini GRFs | Bits & Bobs
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Re: PaulC's Bits & Bobs
Auge wrote:If I'm right, the White House HQ was part of the North American City Set (OzTrans's set?).
The Canadian stuff was, but North American Roads remains available here, and yes, I checked the pdf readme and the White House is indeed available as a parameter. Thanks for giving my memory a jog.PaulC wrote:Wasn't it North American Roads? I'm sure I have it somewhere. Weren't those grfs at the centre of one of this forum's occasional s*** though?
Last edited by wallyweb on 12 Jan 2018 22:35, edited 1 time in total.
wallyweb on tt-forums: Screenshots - Wallyweb World - Projects & Releases
wallyweb on Simuscape: Projects - Releases
Other Stuff: TTDPatch 2.6 "Nightly" download - cirdan's OpenTTD branch (New Map Features)
Screenshot Of The Month Contest Winner: August 2015 - Tied May 2016 - January 2018 - December 2018 - May 2019
wallyweb on Simuscape: Projects - Releases
Other Stuff: TTDPatch 2.6 "Nightly" download - cirdan's OpenTTD branch (New Map Features)
Screenshot Of The Month Contest Winner: August 2015 - Tied May 2016 - January 2018 - December 2018 - May 2019
Re: PaulC's Bits & Bobs
Good to know!wallyweb wrote:...but North American Roads remains available here
My projects: New Town Names | Snow Aware Arctic Buildings | Custom Buildings | Funny Cars | Mini GRFs | Bits & Bobs
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Re: PaulC's Bits & Bobs
Even better to know : if you place a roadset under NA Roads, be it UK Roads, TTRS Roads, or whatever you want, you can get the NA Roads stops.PaulC wrote:Good to know!wallyweb wrote:...but North American Roads remains available here
Re: PaulC's Bits & Bobs
Three small UFOs take off in formation from this desert helistation. Just something I'm playing about with at the moment...
- Attachments
-
- Brundhattan Ridge Transport, 2018-01-28.png (51.95 KiB) Viewed 9450 times
My projects: New Town Names | Snow Aware Arctic Buildings | Custom Buildings | Funny Cars | Mini GRFs | Bits & Bobs
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Re: PaulC's Bits & Bobs
I was planning on making a futuristic vehicle set (2018 onwards to around 3000), may i please borrow your sprites ?
Re: PaulC's Bits & Bobs
Well they aren't mine, I'm just working with the OpenGFX base set here. It's all in the repository on the DevZone: http://dev.openttdcoop.org/projects/opengfx/repository
My projects: New Town Names | Snow Aware Arctic Buildings | Custom Buildings | Funny Cars | Mini GRFs | Bits & Bobs
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Re: PaulC's Bits & Bobs
Wow! All that's missing is an "Area 51 that way --->> " sign.
wallyweb on tt-forums: Screenshots - Wallyweb World - Projects & Releases
wallyweb on Simuscape: Projects - Releases
Other Stuff: TTDPatch 2.6 "Nightly" download - cirdan's OpenTTD branch (New Map Features)
Screenshot Of The Month Contest Winner: August 2015 - Tied May 2016 - January 2018 - December 2018 - May 2019
wallyweb on Simuscape: Projects - Releases
Other Stuff: TTDPatch 2.6 "Nightly" download - cirdan's OpenTTD branch (New Map Features)
Screenshot Of The Month Contest Winner: August 2015 - Tied May 2016 - January 2018 - December 2018 - May 2019
Re: PaulC's Bits & Bobs
Was this in NFO or NML?PaulC wrote:Donald Trump, in glorious 32bpp extra zoom!
So basically this was just a fun little coding exercise I did over the holidays, but who knows, maybe some of you would like to have The Donald running your transport empires? I don't know if there's a more practical use for this sort of thing, but it would be pretty easy for people to create their own avatar grfs using the same method.
Could you share the code?
Re: PaulC's Bits & Bobs
Sure, attached tar includes the basic nml and some blank pngs.
- Attachments
-
- templates.tar
- (12 KiB) Downloaded 197 times
My projects: New Town Names | Snow Aware Arctic Buildings | Custom Buildings | Funny Cars | Mini GRFs | Bits & Bobs
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Re: PaulC's Bits & Bobs
If you've seen some of my recent posts in the technical forum you might know that I'm working on a grf for new currencies. I've been tinkering about with this a bit more today so here's a screenshot of where I'm up to. I now have 16 currencies coded, most of them from Asia, Africa and the Americas, so the overall selection will be far less Eurocentric than the default.
- Attachments
-
- Unnamed, 2000-01-01.png (171.22 KiB) Viewed 9210 times
My projects: New Town Names | Snow Aware Arctic Buildings | Custom Buildings | Funny Cars | Mini GRFs | Bits & Bobs
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Contributions: BK Enhanced Tunnel Set | Fix TTD GRF Bugs | INFRA Foundations | OpenGFX | OpenGFX+ Airports
Other stuff: The GRFs That Time Forgot! | Buildings in Glasgow
What's that in my avatar? It's the Brighton & Rottingdean Seashore Electric Railway - bonkers Victorian engineering!
Who is online
Users browsing this forum: No registered users and 3 guests